Skip to content

Commit a535aa4

Browse files
committed
Removed unnecessary getters
1 parent 609fa43 commit a535aa4

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

frontend-nuxt/store/index.js

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,6 @@ export const state = () => ({})
22

33
export const actions = {}
44

5-
export const getters = {
6-
loggedInUser(state) {
7-
return state.auth.user
8-
},
9-
isLoggedIn(state) {
10-
return state.auth && state.auth.loggedIn ? state.auth.loggedIn : false
11-
}
12-
}
5+
export const getters = {}
136

147
export const mutations = {}

0 commit comments

Comments
 (0)