From 5e29528ad4d75174b4a8ebd462f0ff830c5b1c43 Mon Sep 17 00:00:00 2001 From: Johann150 Date: Fri, 10 Jun 2022 07:36:55 +0200 Subject: chore: fix some lints automatically (#8788) * chore: fix some lints automatically Fixed lints that were automatically fixable with `eslint --fix`. * fix type * workaround for empty interface lint --- packages/client/src/scripts/theme.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'packages/client/src/scripts/theme.ts') diff --git a/packages/client/src/scripts/theme.ts b/packages/client/src/scripts/theme.ts index e2b272405a..dec9fb355c 100644 --- a/packages/client/src/scripts/theme.ts +++ b/packages/client/src/scripts/theme.ts @@ -42,7 +42,7 @@ export const getBuiltinThemesRef = () => { const builtinThemes = ref([]); getBuiltinThemes().then(themes => builtinThemes.value = themes); return builtinThemes; -} +}; let timeout = null; -- cgit v1.2.3-freya