more getters migrated

This commit is contained in:
Henry Jameson 2026-02-23 19:55:43 +02:00
commit 7738ce87e6
8 changed files with 19 additions and 13 deletions

View file

@ -186,7 +186,7 @@ export const useInterfaceStore = defineStore('interface', {
const mobileLayout = width <= 800
const normalOrMobile = mobileLayout ? 'mobile' : 'normal'
const { thirdColumnMode } = window.vuex.getters.mergedConfig
const { thirdColumnMode } = useSyncConfigStore().mergedConfig
if (thirdColumnMode === 'none' || !window.vuex.state.users.currentUser) {
this.layoutType = normalOrMobile
} else {