import { Suspense } from "react"; import OperatorLoginClient from "./OperatorLoginClient"; /** * Server-component shell that wraps the client login form in a Suspense * boundary. The client uses useSearchParams() to read ?next=; Next.js * requires that to live inside Suspense so the CSR bailout doesn't fail the * prerender during `next build`. */ export default function OperatorLoginPage() { return (

Loading…

} >
); }