fix: replace template string with double quote

Replaced with double quote as a template string is unneeded
This commit is contained in:
Axel Olausson Holtenäs 2023-05-29 17:20:57 +02:00
parent 9e78dafa85
commit 5a43128c50

View file

@ -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)
)