From fc088411d95b21f029dc1786b793582d1e14424f Mon Sep 17 00:00:00 2001 From: LenAnderson Date: Tue, 23 Apr 2024 15:24:20 -0400 Subject: [PATCH] fix typo --- public/scripts/slash-commands/SlashCommandParserNameResult.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/scripts/slash-commands/SlashCommandParserNameResult.js b/public/scripts/slash-commands/SlashCommandParserNameResult.js index 062e704ad..0c11421be 100644 --- a/public/scripts/slash-commands/SlashCommandParserNameResult.js +++ b/public/scripts/slash-commands/SlashCommandParserNameResult.js @@ -25,7 +25,7 @@ export class SlashCommandParserNameResult { */ constructor(type, name, start, optionList = []) { this.type = type; - this.name = name, + this.name = name; this.start = start; this.optionList = optionList; }