From 6985e901ea8fd100fa01c7e775a94a4797ace577 Mon Sep 17 00:00:00 2001 From: Naomi Carrigan Date: Sun, 2 Nov 2025 09:14:42 -0800 Subject: [PATCH] fix: ephemeral reply in process button module --- src/modules/processButton.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/modules/processButton.ts b/src/modules/processButton.ts index a2d29d8..bfc97ec 100644 --- a/src/modules/processButton.ts +++ b/src/modules/processButton.ts @@ -24,12 +24,11 @@ export const processButton = async( interaction: ButtonInteraction, ): Promise => { try { - await interaction.deferReply(); + await interaction.deferReply({ ephemeral: true }); const { customId, user, message } = interaction; if (customId !== user.id) { - await interaction.reply({ - content: "You cannot acknowledge someone else's reminder.", - ephemeral: true, + await interaction.editReply({ + content: "You cannot acknowledge someone else's reminder.", }); } await message.delete();