From 2d8475b20a434d5b0859f0338b0a02c9ab54c7b8 Mon Sep 17 00:00:00 2001 From: JustTemmie <47639983+JustTemmie@users.noreply.github.com> Date: Sat, 5 Jul 2025 19:22:06 +0200 Subject: [PATCH] fix: convert arrow function for consistency --- components/Settings/AppSettings/Appearance.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/Settings/AppSettings/Appearance.vue b/components/Settings/AppSettings/Appearance.vue index 696d8b9..3adfda6 100644 --- a/components/Settings/AppSettings/Appearance.vue +++ b/components/Settings/AppSettings/Appearance.vue @@ -58,7 +58,7 @@ function changeTheme(id: string, url: string) { themeLinkElement.href = `${baseURL}themes/${url}`; } -const fetchThemes = async () => { +async function fetchThemes() { for (const theme of defaultThemes) { const themeConfig = await $fetch(`${baseURL}themes/${theme}.json`) as Theme themeConfig.id = theme