🔧 Fix computed property to correctly reference getFlags value

This commit is contained in:
2026-01-29 04:59:52 +00:00
parent 45a9eb5099
commit 48e785770e

View File

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