From 6ad3e29869bed16c5fbfc20e442b612a2d0bf23c Mon Sep 17 00:00:00 2001 From: Josh Dassinger Date: Mon, 16 Feb 2026 10:55:37 -0600 Subject: [PATCH] Fixed assigning the default store state --- src/store/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/index.js b/src/store/index.js index 676fadb7..34d77533 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -2457,7 +2457,7 @@ export const useMainStore = defineStore({ // populate initial state populateInitialState(forceReset) { if (!sessionStorage.getItem(storeId) || forceReset) { - this.$state = state; + this.$state = getDefaultState(); } },