diff --git a/stores/users.ts b/stores/users.ts index 11c17c3..5184be8 100644 --- a/stores/users.ts +++ b/stores/users.ts @@ -18,7 +18,7 @@ export const useUsersStore = defineStore("users", () => { } const actions = { async fetch() { - if (state.fetched.value) { + if (!accountStore.isCrew || state.fetched.value) { return state.users; } const pending = state.pendingSync.value;