diff --git a/apps/www/src/app/(authentication)/login/page.tsx b/apps/www/src/app/(authentication)/login/page.tsx index 6e90ec90..9c530f16 100644 --- a/apps/www/src/app/(authentication)/login/page.tsx +++ b/apps/www/src/app/(authentication)/login/page.tsx @@ -7,6 +7,7 @@ import { V1Link } from "@/app/components/v1-link"; const BrowserWarning = dynamic( () => import("@umamin/ui/components/browser-warning"), + { ssr: false } ); export const metadata = { diff --git a/apps/www/src/app/(authentication)/register/page.tsx b/apps/www/src/app/(authentication)/register/page.tsx index bcd2e543..28cb0209 100644 --- a/apps/www/src/app/(authentication)/register/page.tsx +++ b/apps/www/src/app/(authentication)/register/page.tsx @@ -7,6 +7,7 @@ import { V1Link } from "@/app/components/v1-link"; const BrowserWarning = dynamic( () => import("@umamin/ui/components/browser-warning"), + { ssr: false } ); export const metadata = {