diff --git a/src/commands/book.ts b/src/commands/book.ts index 5344987..7d86037 100644 --- a/src/commands/book.ts +++ b/src/commands/book.ts @@ -38,7 +38,7 @@ const Response = async (interaction: CommandInteraction, dbUrl: any) => { .setTitle(`${books.length}冊見つかりました!`) .setTimestamp(); books.forEach(book => embed.addFields( - { name: book, value: '--' }, + { name: book, value: '\u200b' }, )); await interaction.editReply({embeds: [embed]}); }