From 43832d165f487f6cfd15f89a42fee93e880ef6ae Mon Sep 17 00:00:00 2001 From: "Timothy J. Baek" Date: Sun, 31 Mar 2024 01:59:10 -0700 Subject: [PATCH] chore: frontend formatting --- svelte.config.js | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/svelte.config.js b/svelte.config.js index be8b3f5..80332f1 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -17,14 +17,12 @@ const config = { fallback: 'index.html' }) }, - onwarn: (warning, handler) => { - const { code, _ } = warning; - if (code === "css-unused-selector") - return; - - handler(warning); - }, + onwarn: (warning, handler) => { + const { code, _ } = warning; + if (code === 'css-unused-selector') return; + handler(warning); + } }; export default config;