🐛 Fix incorrect function call for retrieving flags

This commit is contained in:
2026-01-29 05:02:11 +00:00
parent 48e785770e
commit ef1a2d2210

View File

@@ -139,7 +139,7 @@ const appVersion = computed(
() => import.meta.env.VITE_APP_VERSION || '1.0.0-dev' () => import.meta.env.VITE_APP_VERSION || '1.0.0-dev'
); );
const flags = computed(() => getFlags.value); const flags = computed(() => getFlags.value());
const toggle = () => { const toggle = () => {
isOpen.value = !isOpen.value; isOpen.value = !isOpen.value;