diff --git a/scripts/check-architecture.mjs b/scripts/check-architecture.mjs index b5d7c35..b0eb0d8 100644 --- a/scripts/check-architecture.mjs +++ b/scripts/check-architecture.mjs @@ -110,6 +110,7 @@ const rules = [ /^src\/utils\/auth-storage\.ts$/, /^src\/utils\/config-storage\.ts$/, /^src\/utils\/preference-storage\.ts$/, + /^src\/utils\/record-storage\.ts$/, ], }, { diff --git a/src/App.vue b/src/App.vue index a7e13c8..5ee48b8 100644 --- a/src/App.vue +++ b/src/App.vue @@ -5,7 +5,14 @@ import LanguageSwitcher from './components/common/LanguageSwitcher.vue' import AlertComponent from '@/components/common/AlertComponent.vue' import { useAppShell } from '@/composables' -const { isDarkMode, isLoading, routeViewKey, showGlobalControls } = useAppShell() +const { + isDarkMode, + isLoading, + routeTransitionMode, + routeTransitionName, + routeViewKey, + showGlobalControls +} = useAppShell()