"use client"; import { Flex, Spinner } from "@chakra-ui/react"; import useAuthReady from "../lib/useAuthReady"; export default function AuthWrapper({ children, }: { children: React.ReactNode; }) { const { isLoading } = useAuthReady(); if (isLoading) { return ( ); } return <>{children}; }