Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/dashboard/src/app/global-error.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export default function GlobalError({
}, [error]);

return (
<html lang="en">
<html lang="en" suppressHydrationWarning>
<body>
<h2>Something went wrong!</h2>
<button type="button" onClick={() => reset()}>
Expand Down
2 changes: 1 addition & 1 deletion apps/dashboard/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export default function RootLayout({
children: React.ReactNode;
}) {
return (
<html lang="en">
<html lang="en" suppressHydrationWarning>
<head>
<PlausibleProvider
domain="thirdweb.com"
Expand Down
2 changes: 1 addition & 1 deletion apps/playground-web/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export default function RootLayout({
children: React.ReactNode;
}) {
return (
<html lang="en">
<html lang="en" suppressHydrationWarning>
<head>
<Script
src="https://thirdweb.com/js/pl.js"
Expand Down
2 changes: 1 addition & 1 deletion apps/portal/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export default function RootLayout({
children: React.ReactNode;
}) {
return (
<html lang="en">
<html lang="en" suppressHydrationWarning>
<head>
<PosthogHeadSetup />
<Script
Expand Down
2 changes: 1 addition & 1 deletion apps/wallet-ui/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default function RootLayout({
children: React.ReactNode;
}>) {
return (
<html lang="en">
<html lang="en" suppressHydrationWarning>
<body
className={cn(
"flex min-h-screen w-full max-w-screen justify-center",
Expand Down
Loading