spandres

Results 1 comments of spandres

> My workaround was to create a wrapper component at the layout level. ```typescript export default function Wrapper({ children }: {children?: ReactNode}) { const [ready, setReady] = useState(false); useEffect(() =>...