From 53ac0f4b7913f20368cb2e99fbc56161c5f6a8ba Mon Sep 17 00:00:00 2001 From: Minz Date: Mon, 19 Jan 2026 14:58:51 +0100 Subject: [PATCH] Make budget view non ephemeral --- commands/receipts/receiptCommands.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/receipts/receiptCommands.js b/commands/receipts/receiptCommands.js index e745c6b..da60ee8 100644 --- a/commands/receipts/receiptCommands.js +++ b/commands/receipts/receiptCommands.js @@ -98,7 +98,7 @@ module.exports = { .setFooter({ text: `Exchange rate this week: 1 € = ${currentBudget.exchange_rate} kr` }) .setTimestamp(); - await interaction.reply({ embeds: [budgetEmbed], ephemeral: true }); + await interaction.reply({ embeds: [budgetEmbed] }); break default: await interaction.reply(`Sub mismatch. Switching on ${interaction.options.getSubcommand()}`);