From 6b19246fecb6d5d737cdd94f40f6509d58c45e3e Mon Sep 17 00:00:00 2001 From: Gustavo Brian Date: Tue, 5 Oct 2021 19:05:54 +0200 Subject: [PATCH] Fix remote host getter (#94) * Lib build fix $te ref * Error accesing host --- client/src/store/remote.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }, })