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