Skip to content

Commit

Permalink
chore: /verify: adds instructions on tooltip
Browse files Browse the repository at this point in the history
  • Loading branch information
en3sis committed Feb 8, 2024
1 parent c3c14c1 commit f60469d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/controllers/plugins/verify.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,9 @@ export const verifyModal = async (interaction: Interaction) => {
new TextInputBuilder()
.setCustomId('input1')
.setLabel(`Which emotion does this emoji ${userCaptchaChallenge.emoji} represent?`)
.setPlaceholder('Type the name of the emotion.')
.setPlaceholder(
`Type the name of the emotion, ex: ${emojiMap.map((e) => e.name).join(', ')}`,
)
.setStyle(TextInputStyle.Short),
),
)
Expand Down

0 comments on commit f60469d

Please sign in to comment.