chore: remove vikunjaReady from store

This commit is contained in:
Dominik Pschenitschni 2022-02-01 23:09:41 +01:00
parent dfa30258aa
commit 24a154422d
No known key found for this signature in database
GPG key ID: B257AC0149F43A77
2 changed files with 2 additions and 6 deletions

View file

@ -43,7 +43,6 @@ export const store = createStore({
menuActive: true,
keyboardShortcutsActive: false,
quickActionsActive: false,
vikunjaReady: false,
},
mutations: {
[LOADING](state, loading) {
@ -79,9 +78,6 @@ export const store = createStore({
[BACKGROUND](state, background) {
state.background = background
},
vikunjaReady(state, ready) {
state.vikunjaReady = ready
},
},
actions: {
async [CURRENT_LIST]({state, commit}, currentList) {