79547615

Date: 2025-04-01 02:36:08
Score: 0.5
Natty:
Report link

Not sure, but this might work. If you render it with conditionally by using

const { isLoaded } = useAuth();

Make use of isLoaded to stop render the component eg:

  if (!isLoaded) {
        // Prevent rendering until auth state is loaded
        return null;
    }
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Raja Gopal