From d3a4554b0d4c69ff8428de784802bc78fb774c0a Mon Sep 17 00:00:00 2001 From: zias Date: Mon, 6 Apr 2026 18:05:29 +0200 Subject: [PATCH] fix: links --- apps/web/src/components/Header.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/src/components/Header.tsx b/apps/web/src/components/Header.tsx index c571eb4..74ebed8 100644 --- a/apps/web/src/components/Header.tsx +++ b/apps/web/src/components/Header.tsx @@ -23,7 +23,7 @@ export function Header({ const handleSignOut = async () => { await authClient.signOut(); - navigate({ to: "/open-mic" }); + navigate({ to: "/" }); }; return ( @@ -35,7 +35,7 @@ export function Header({