diff --git a/src/commands/manage/modules/credits/modules/transfer/index.ts b/src/commands/manage/modules/credits/modules/transfer/index.ts index 488ae70..c75da60 100644 --- a/src/commands/manage/modules/credits/modules/transfer/index.ts +++ b/src/commands/manage/modules/credits/modules/transfer/index.ts @@ -42,8 +42,9 @@ export default { await checkPermission(interaction, PermissionsBitField.Flags.ManageGuild); - const { errorColor, successColor, footerText, footerIcon } = - await getEmbedConfig(interaction.guild); // Destructure member + const { successColor, footerText, footerIcon } = await getEmbedConfig( + interaction.guild + ); // Destructure member const { guild, options } = interaction; // Get options diff --git a/src/commands/reputation/modules/view/index.ts b/src/commands/reputation/modules/view/index.ts index 0722cf3..23598a0 100644 --- a/src/commands/reputation/modules/view/index.ts +++ b/src/commands/reputation/modules/view/index.ts @@ -20,7 +20,7 @@ export default { execute: async (interaction: ChatInputCommandInteraction) => { await deferReply(interaction, true); - const { options, user, guild } = interaction; + const { options, guild } = interaction; const { successColor, footerText, footerIcon } = await getEmbedConfig( guild