diff --git a/src/pages/_layout.tsx b/src/pages/_layout.tsx index ebdff0ca..e109f0c0 100644 --- a/src/pages/_layout.tsx +++ b/src/pages/_layout.tsx @@ -193,6 +193,8 @@ const Layout = () => { decorated, "| showing:", !decorated, + "| theme mode:", + mode, ); if (!decorated) { return ( @@ -202,7 +204,7 @@ const Layout = () => { ); } return null; - }, [decorated]); + }, [decorated, mode]); useEffect(() => { setThemeReady(true);