Skip to content

Commit

Permalink
chore: disable ssr for dialog in auth pages
Browse files Browse the repository at this point in the history
  • Loading branch information
joshxfi committed Jul 17, 2024
1 parent 8581a83 commit 5bb9ac3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions apps/www/src/app/(authentication)/login/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down
1 change: 1 addition & 0 deletions apps/www/src/app/(authentication)/register/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down

0 comments on commit 5bb9ac3

Please sign in to comment.