From f30e0986b65e4e7dcd9877bfe75c99339e2d4a23 Mon Sep 17 00:00:00 2001 From: Jeremy Wharton Date: Sat, 22 Jul 2023 20:47:41 -0500 Subject: [PATCH] web/satellite/vuetify-poc: fix app store name conflict The name of the Vuetify Pinia app store has been renamed so that it does not conflict with the regular app store. Previously, whichever store was created first would override the other due to them having identical names. Change-Id: I11cb3b70b7385320accd30644cb3ad6cfad7d00e --- web/satellite/vuetify-poc/src/store/appStore.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/satellite/vuetify-poc/src/store/appStore.ts b/web/satellite/vuetify-poc/src/store/appStore.ts index 4c4b30020..e60a1919a 100644 --- a/web/satellite/vuetify-poc/src/store/appStore.ts +++ b/web/satellite/vuetify-poc/src/store/appStore.ts @@ -8,7 +8,7 @@ class AppState { public isNavigationDrawerShown = true; } -export const useAppStore = defineStore('app', () => { +export const useAppStore = defineStore('vuetifyApp', () => { const state = reactive(new AppState()); function toggleNavigationDrawer(): void {