A Prediction Market on the AT Protocol

refactor(auth-context-provider.tsx): use or for loading state

Ciaran 846a92ab 5799e176

+1 -1
+1 -1
src/web/providers/auth-context-provider.tsx
··· 43 43 staleTime: () => Infinity, 44 44 }); 45 45 46 - const loading = isPending ?? isLoading ?? isLoginLoading; 46 + const loading = isPending || isLoading || isLoginLoading; 47 47 const authenticated = data?.client && data?.profile; 48 48 49 49 return <main className="subpixel-antialiased text-shell-900 bg-shell-50 flex flex-col h-screen">