We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff5cb89 commit e7dc5f4Copy full SHA for e7dc5f4
src/app/[language]/layout.tsx
@@ -1,5 +1,3 @@
1
-"use client"
2
-
3
import React, { useEffect } from "react";
4
import { Metadata } from "next";
5
import { DEFAULT_LANGUAGE_CODE } from "@/features/localization/localization.config";
@@ -49,11 +47,6 @@ export default function RootLayout({
49
47
const initialThemeCookieValue =
50
48
sanitizedThemeCookieValue || ThemeCookieValues.SYSTEM_DARK;
51
52
- useEffect(() => {
53
- console.log("App mounted ounce");
54
- return () => console.log("App unmounted X")
55
- },[])
56
57
return (
58
<PageLayoutComponent
59
languageCode={languageCode}
0 commit comments