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:
parent
0d11318618
commit
003bde460d
1 changed files with 1 additions and 6 deletions
|
|
@ -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 />;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue