fix(web): remove auth guard from home page

Home page (QR code scanning) does not require authentication.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Naiyuan Qing 2026-02-13 16:53:22 +08:00
parent 0d11318618
commit 003bde460d

View file

@ -1,10 +1,5 @@
import ChatPage from "@/components/pages/chat-page";
import { AuthGuard } from "@/components/auth-guard";
export default function Page() {
return (
<AuthGuard>
<ChatPage />
</AuthGuard>
);
return <ChatPage />;
}