import dynamic from "next/dynamic"; import { Suspense } from "react"; import { getLayout } from "@calcom/features/troubleshooter/layout"; import { useLocale } from "@calcom/lib/hooks/useLocale"; import { HeadSeo, Loader } from "@calcom/ui"; import PageWrapper from "@components/PageWrapper"; const TroubleshooterClientOnly = dynamic( () => import("@calcom/features/troubleshooter/Troubleshooter").then((mod) => mod.Troubleshooter), { ssr: false, } ); function TroubleshooterPage() { const { t } = useLocale(); return ( <> }> ); } TroubleshooterPage.getLayout = getLayout; TroubleshooterPage.PageWrapper = PageWrapper; export default TroubleshooterPage;