fix: redirection from index page

This commit is contained in:
Dakshesh Jain 2022-11-25 13:06:34 +05:30
parent db14e9735e
commit 09e5e631b6
3 changed files with 5 additions and 3 deletions

View file

@ -131,7 +131,7 @@ export const UserProvider = ({ children }: { children: ReactElement }) => {
<UserContext.Provider
value={{
user: error ? undefined : data,
isUserLoading: !(!!data || !!error),
isUserLoading: Boolean(data === undefined && error === undefined),
mutateUser: mutate,
activeWorkspace: workspaceError ? undefined : activeWorkspace,
mutateWorkspaces: mutateWorkspaces,