diff --git a/client/src/store/remote.ts b/client/src/store/remote.ts index 0089eb77..b76b7503 100644 --- a/client/src/store/remote.ts +++ b/client/src/store/remote.ts @@ -24,7 +24,7 @@ export const getters = getterTree(state, { return state.id !== '' }, host: (state, getters, root) => { - return root.user.member[state.id] || null + return root.user.members[state.id] || null }, })