aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/web/app/layout.tsx6
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/web/app/layout.tsx b/apps/web/app/layout.tsx
index 55cab4fd..8514b8ad 100644
--- a/apps/web/app/layout.tsx
+++ b/apps/web/app/layout.tsx
@@ -54,7 +54,11 @@ export default async function RootLayout({
const userSettings = await getUserLocalSettings();
const isRTL = userSettings.lang === "ar";
return (
- <html className="" lang={userSettings.lang} dir={isRTL ? "rtl" : "ltr"}>
+ <html
+ lang={userSettings.lang}
+ dir={isRTL ? "rtl" : "ltr"}
+ suppressHydrationWarning
+ >
<body className={inter.className}>
<NuqsAdapter>
<Providers