Skip to content

Commit

Permalink
update: ゼロ幅スペースに置き換え
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryoga-exe committed Jul 18, 2022
1 parent 835e40b commit 56a5bda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/book.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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]});
}
Expand Down

0 comments on commit 56a5bda

Please sign in to comment.