From faaaaf6ac7095f19f4c4435d8c9e32c849fc5414 Mon Sep 17 00:00:00 2001 From: Corban-Lee Date: Tue, 6 May 2025 18:09:05 +0100 Subject: [PATCH] style: add missing semicolons --- src/client/src/ts/guild/styles.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/client/src/ts/guild/styles.ts b/src/client/src/ts/guild/styles.ts index ed4a9ec..ec94924 100644 --- a/src/client/src/ts/guild/styles.ts +++ b/src/client/src/ts/guild/styles.ts @@ -472,7 +472,7 @@ Object.entries(textMutators).forEach(([key, description]) => { title: description, val: key } as ISingleOption) -}) +}); const descriptionMutatorSelect = new HSSelect( $("#formDescriptionMutator").get(0), @@ -486,7 +486,7 @@ Object.entries(textMutators).forEach(([key, description]) => { title: description, val: key } as ISingleOption) -}) +}); const colourPicker = $("#formColour") as JQuery; const colourTextInput = $("#formColourInput") as JQuery;