Skip to content

Commit

Permalink
fit: fix private monday test
Browse files Browse the repository at this point in the history
  • Loading branch information
hellos3b committed Feb 18, 2024
1 parent 2aece1a commit 201012d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/fitness/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,11 @@ export const fitInteractionHandler = (db) => async (interaction) => {
const sub = interaction.options.getSubcommand();

if ("monday" === sub) {
interaction.deferReply();
interaction.deferReply({ ephemeral: true });
const embed = await createRecap(interaction.client, db)();
interaction.editReply({
content: "Here is a preview of the upcoming monday recap",
embeds: [embed],
ephemeral: true,
});
}
}
Expand Down

0 comments on commit 201012d

Please sign in to comment.