diff --git a/app/components/auth.tsx b/app/components/auth.tsx
index 4e5ab8dc6a3..8e2b964ab3d 100644
--- a/app/components/auth.tsx
+++ b/app/components/auth.tsx
@@ -15,6 +15,7 @@ export function AuthPage() {
const access = useAccessStore();
const goHome = () => navigate(Path.Home);
+ const goChat = () => navigate(Path.Chat);
const resetAccessCode = () => { access.updateCode(""); access.updateToken(""); }; // Reset access code to empty string
useEffect(() => {
@@ -57,7 +58,7 @@ export function AuthPage() {