From a9c9bc2b36b0d14db59bf1e9bd03ec7f074d8f4b Mon Sep 17 00:00:00 2001 From: Henry Date: Tue, 9 Sep 2025 12:03:35 +0100 Subject: [PATCH] fix: reenable scroll when navigating back to marketing page --- apps/web/src/views/home/components/Layout.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/apps/web/src/views/home/components/Layout.tsx b/apps/web/src/views/home/components/Layout.tsx index 74fcb9d0..5dcb7ab2 100644 --- a/apps/web/src/views/home/components/Layout.tsx +++ b/apps/web/src/views/home/components/Layout.tsx @@ -1,8 +1,10 @@ -import PatternedBackground from "~/components/PatternedBackground"; import { useTheme } from "next-themes"; + +import { authClient } from "@kan/auth/client"; + +import PatternedBackground from "~/components/PatternedBackground"; import Footer from "./Footer"; import Header from "./Header"; -import { authClient } from "@kan/auth/client"; export default function Layout({ children }: { children: React.ReactNode }) { const { theme } = useTheme(); @@ -18,6 +20,7 @@ export default function Layout({ children }: { children: React.ReactNode }) {