From 5c076c07a0a1eb10f112562a6841ea324253c2d8 Mon Sep 17 00:00:00 2001 From: Evorp <3vorpgaming@gmail.com> Date: Mon, 22 Jul 2024 11:24:54 -0700 Subject: [PATCH] fix missing commas --- .vscode/templates.code-snippets | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.vscode/templates.code-snippets b/.vscode/templates.code-snippets index ba96c6d7..193867c3 100644 --- a/.vscode/templates.code-snippets +++ b/.vscode/templates.code-snippets @@ -58,9 +58,9 @@ "import type { Component } from \"@interfaces\";", "\nexport default {", "\tid: \"${1:Name}\"", - "\tasync execute(client, interaction) {" + "\tasync execute(client, interaction) {", "\t\t${3://todo: implement component}", - "\t}" + "\t}", "} as Component<${2:Interaction}>;" ] },