Merge branch 'fix/app-ready' into feature/vue3-modals-with-router-4

This commit is contained in:
kolaente 2022-01-30 21:53:24 +01:00
commit a16e8fea61
Signed by untrusted user who does not match committer: konrad
GPG key ID: F40E70337AB24C9B
3 changed files with 14 additions and 8 deletions

View file

@ -141,10 +141,9 @@ export const store = createStore({
commit(CURRENT_LIST, currentList)
},
async loadApp({commit, dispatch}) {
async loadApp({dispatch}) {
await checkAndSetApiUrl(window.API_URL)
await dispatch('auth/checkAuth')
commit('vikunjaReady', true)
},
},
})