From b5e1b3f83f580811ea81c780414ce860d48ecd6a Mon Sep 17 00:00:00 2001 From: Ethan Lane Date: Tue, 30 Jan 2024 20:02:50 +0000 Subject: [PATCH] Fix linting issue --- src/commands/view.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/view.ts b/src/commands/view.ts index 2cf79f1..8f89eb4 100644 --- a/src/commands/view.ts +++ b/src/commands/view.ts @@ -70,7 +70,7 @@ export default class View extends Command { if (e instanceof DiscordAPIError) { await interaction.editReply(`Unable to send next drop. Please try again, and report this if it keeps happening. Code: ${e.code}.`); } else { - await interaction.editReply(`Unable to send next drop. Please try again, and report this if it keeps happening. Code: UNKNOWN.`); + await interaction.editReply("Unable to send next drop. Please try again, and report this if it keeps happening. Code: UNKNOWN."); } } }