Skip to content

Commit

Permalink
chore: remove ephemeral
Browse files Browse the repository at this point in the history
  • Loading branch information
indiejoseph committed Apr 24, 2024
1 parent 90fb6dc commit b92e7d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/commands/hkeval-quiz.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export async function stingSelectMenuResponse(
) {
const answer = userQuizAnswerMap.get(interaction.user.id);
const userAnswer = interaction.values[0];
await interaction.deferReply({ ephemeral: true });
await interaction.deferReply();
const correct = answer === userAnswer; // Assume A is the correct answer
await interaction.editReply({
content: correct ? 'Correct! 🎉' : 'Incorrect! 😢',
Expand All @@ -67,7 +67,7 @@ export async function stingSelectMenuResponse(
}

export async function execute(interaction: CommandInteraction) {
await interaction.deferReply({ ephemeral: true });
await interaction.deferReply();

try {
const record = await getShuffleRecord();
Expand Down

0 comments on commit b92e7d9

Please sign in to comment.