From 71c5745639efb289b22de3c5e03ca69820acd8e1 Mon Sep 17 00:00:00 2001 From: "Alex Pooley (@zuedev)" Date: Wed, 15 Jul 2026 11:43:04 +0100 Subject: fix: update reply message for requisition ticket creation to be ephemeral --- 174bg/discord-bot/main.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to '174bg/discord-bot') diff --git a/174bg/discord-bot/main.js b/174bg/discord-bot/main.js index f9ce3cd..2f1ae87 100644 --- a/174bg/discord-bot/main.js +++ b/174bg/discord-bot/main.js @@ -108,9 +108,10 @@ const commands = [ }); // reply to the user - await interaction.reply( - `Requisition ticket created: <#${newChannel.id}>`, - ); + await interaction.reply({ + content: `Your requisition ticket has been created: <#${newChannel.id}>`, + ephemeral: true, + }); // log sendMessageToLogsChannel( -- cgit v1.2.3