From 003bde460d40a35b0dff4e236392cc6e408d1f51 Mon Sep 17 00:00:00 2001 From: Naiyuan Qing <145280634+NevilleQingNY@users.noreply.github.com> Date: Fri, 13 Feb 2026 16:53:22 +0800 Subject: [PATCH] fix(web): remove auth guard from home page Home page (QR code scanning) does not require authentication. Co-Authored-By: Claude Opus 4.5 --- apps/web/app/page.tsx | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/apps/web/app/page.tsx b/apps/web/app/page.tsx index dada2a25..50d9c193 100644 --- a/apps/web/app/page.tsx +++ b/apps/web/app/page.tsx @@ -1,10 +1,5 @@ import ChatPage from "@/components/pages/chat-page"; -import { AuthGuard } from "@/components/auth-guard"; export default function Page() { - return ( - - - - ); + return ; }