Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions api/routes/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,6 @@ async def home(request: Request) -> HTMLResponse:
"""Handle the home page, rendering the landing page for unauthenticated users and the chat page for authenticated users."""
user_info, is_authenticated_flag = await validate_user(request)

print(f"XXXXXXXXXXXXXXXXXX User Info: {user_info}, is_authenticated_flag: {is_authenticated_flag}")

if is_authenticated_flag or user_info:
return templates.TemplateResponse(
"chat.j2",
Expand Down
Loading