fix: ⚡ replace template string with double quote
Replaced with double quote as a template string is unneeded
This commit is contained in:
parent
9e78dafa85
commit
5a43128c50
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ import sendResponse from "../../../../utils/sendResponse";
|
||||||
export const builder = (command: SlashCommandSubcommandBuilder) => {
|
export const builder = (command: SlashCommandSubcommandBuilder) => {
|
||||||
return command
|
return command
|
||||||
.setName("quotes")
|
.setName("quotes")
|
||||||
.setDescription(`Configure quotes module`)
|
.setDescription("Configure quotes module")
|
||||||
.addBooleanOption((option) =>
|
.addBooleanOption((option) =>
|
||||||
option.setName("status").setDescription("Status").setRequired(true)
|
option.setName("status").setDescription("Status").setRequired(true)
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Reference in a new issue