From 5a43128c502cf9b6bcf22a7087d9dc1fc48af008 Mon Sep 17 00:00:00 2001 From: Vermium Sifell Date: Mon, 29 May 2023 17:20:57 +0200 Subject: [PATCH] fix: :zap: replace template string with double quote Replaced with double quote as a template string is unneeded --- src/commands/settings/subcommands/quotes/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/settings/subcommands/quotes/index.ts b/src/commands/settings/subcommands/quotes/index.ts index 4e08a3c..5b086fb 100644 --- a/src/commands/settings/subcommands/quotes/index.ts +++ b/src/commands/settings/subcommands/quotes/index.ts @@ -12,7 +12,7 @@ import sendResponse from "../../../../utils/sendResponse"; export const builder = (command: SlashCommandSubcommandBuilder) => { return command .setName("quotes") - .setDescription(`Configure quotes module`) + .setDescription("Configure quotes module") .addBooleanOption((option) => option.setName("status").setDescription("Status").setRequired(true) )