From 1aea4a651eecc8088817325d5d5c5cdaff816c04 Mon Sep 17 00:00:00 2001 From: SrIzan10 <66965250+SrIzan10@users.noreply.github.com> Date: Sat, 8 Apr 2023 16:29:26 +0200 Subject: [PATCH] chore: make objects prettier --- snippets/snippets.code-snippets | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/snippets/snippets.code-snippets b/snippets/snippets.code-snippets index 4e71552..81d7812 100644 --- a/snippets/snippets.code-snippets +++ b/snippets/snippets.code-snippets @@ -15,13 +15,13 @@ "sern: Send ephemeral message": { "scope": "js,ts", "prefix": "ctxeph", - "body": ["ctx.reply({content: `$1`, ephemeral: true})"], + "body": ["ctx.reply({ content: `$1`, ephemeral: true })"], "description": "Send an ephemeral message with some content." }, "sern: Send message with empty array": { "scope": "js,ts", "prefix": "ctxopt", - "body": ["ctx.reply({$1})"], + "body": ["ctx.reply({ $1 })"], "description": "Send a message with an empty array." }, "sern: Create a simple event": {