Fix client-side errors

This commit is contained in:
2025-02-10 13:24:14 -05:00
parent 69f2759af5
commit 852ea63672
8 changed files with 28 additions and 20 deletions

View File

@@ -9,7 +9,6 @@ import {createVuetify} from 'vuetify'
import * as components from 'vuetify/components'
import * as directives from 'vuetify/directives'
import vueGoogleOauth from 'vue3-google-login'
import {useSubscriptionStore} from "@/stores/subscriptionStore.js";
import {useAuthStore} from "@/stores/authStore.js";
import i18n from './i18n.js';
import {useUserProfileStore} from "@/stores/userProfileStore.js";
@@ -33,7 +32,6 @@ const app = createApp(App)
app.config.globalProperties.$t = i18n.global.t;
// this force the creation and initialization of the stores
useSubscriptionStore()
useAuthStore()
useUserProfileStore()
useCreatorProfileStore()