From 4457d322053fd4ca73928f5a58a9e49e358f6cfa Mon Sep 17 00:00:00 2001 From: Josh Moore Date: Wed, 1 Nov 2023 23:49:39 -0600 Subject: [PATCH] fix: move semicolons --- frontend/setup.mts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/setup.mts b/frontend/setup.mts index c4372d8..310d3e6 100644 --- a/frontend/setup.mts +++ b/frontend/setup.mts @@ -113,8 +113,8 @@ document.addEventListener('DOMContentLoaded', () => { password: Elements.mySqlPassword.value, database: Elements.mySqlDatabase.value } - } - }; + }; + } } else if (Elements.pgsqlTab.active) { if (Elements.pgsqlHost.value != null && Elements.pgsqlHost.value != '') { config.database = { @@ -126,8 +126,8 @@ document.addEventListener('DOMContentLoaded', () => { password: Elements.pgsqlPassword.value, database: Elements.pgsqlDatabase.value } - } - }; + }; + } } // append rate limit config, if specified