diff --git a/apps/stage-pocket/src/App.vue b/apps/stage-pocket/src/App.vue index 4e9f83f12..3f30b0f00 100644 --- a/apps/stage-pocket/src/App.vue +++ b/apps/stage-pocket/src/App.vue @@ -69,6 +69,7 @@ watch(settings.themeColorsHueDynamic, () => { // Initialize first-time setup check when app mounts onMounted(async () => { analyticsStore.initialize() + await displayModelsStore.initialize() cardStore.initialize() if (onboardingStore.needsOnboarding) { diff --git a/apps/stage-tamagotchi/src/renderer/App.vue b/apps/stage-tamagotchi/src/renderer/App.vue index aed63b030..2993cb1d2 100644 --- a/apps/stage-tamagotchi/src/renderer/App.vue +++ b/apps/stage-tamagotchi/src/renderer/App.vue @@ -122,6 +122,7 @@ context.value.on(electronSettingsNavigate, (event) => { onMounted(async () => { analyticsStore.initialize() + await displayModelsStore.initialize() cardStore.initialize() await chatSessionStore.initialize() diff --git a/apps/stage-tamagotchi/src/renderer/pages/index.vue b/apps/stage-tamagotchi/src/renderer/pages/index.vue index 6c345d517..0f3f94c88 100644 --- a/apps/stage-tamagotchi/src/renderer/pages/index.vue +++ b/apps/stage-tamagotchi/src/renderer/pages/index.vue @@ -37,9 +37,7 @@ import ResourceStatusIsland from '../components/stage-islands/resource-status-is import StatusIsland from '../components/stage-islands/status-island/index.vue' import { electronOpenOnboarding } from '../../shared/eventa' -import { - modelSettingsRuntimeSnapshotChannelName, -} from '../../shared/model-settings-runtime' +import { modelSettingsRuntimeSnapshotChannelName } from '../../shared/model-settings-runtime' import { useChatSyncStore } from '../stores/chat-sync' import { useControlsIslandStore } from '../stores/controls-island' import { useStageWindowLifecycleStore } from '../stores/stage-window-lifecycle' diff --git a/apps/stage-web/src/App.vue b/apps/stage-web/src/App.vue index e6821e30e..0dd9a140d 100644 --- a/apps/stage-web/src/App.vue +++ b/apps/stage-web/src/App.vue @@ -81,6 +81,7 @@ watch(settings.themeColorsHueDynamic, () => { // Initialize first-time setup check when app mounts onMounted(async () => { analyticsStore.initialize() + await displayModelsStore.initialize() cardStore.initialize() if (onboardingStore.needsOnboarding) { diff --git a/apps/stage-web/src/pages/auth/sign-in.vue b/apps/stage-web/src/pages/auth/sign-in.vue index 706ef47bf..2e816a22a 100644 --- a/apps/stage-web/src/pages/auth/sign-in.vue +++ b/apps/stage-web/src/pages/auth/sign-in.vue @@ -1,26 +1,24 @@