🐛 Fix incorrect function call for retrieving flags
This commit is contained in:
@@ -139,7 +139,7 @@ const appVersion = computed(
|
||||
() => import.meta.env.VITE_APP_VERSION || '1.0.0-dev'
|
||||
);
|
||||
|
||||
const flags = computed(() => getFlags.value);
|
||||
const flags = computed(() => getFlags.value());
|
||||
|
||||
const toggle = () => {
|
||||
isOpen.value = !isOpen.value;
|
||||
|
||||
Reference in New Issue
Block a user