diff --git a/auth.py b/auth.py index dc9c6a7..90f9a3d 100644 --- a/auth.py +++ b/auth.py @@ -103,5 +103,5 @@ async def auth_twitch_callback(code: str, state: str, request: Request, db: Sess db.commit() # Redirect to a future dashboard page for a better user experience - # For now, we can redirect back to the home page. - return RedirectResponse(url="/") \ No newline at end of file + # This prepares us for Task 1.4 (Session Management) and Task 2.1 (Dashboard UI) + return RedirectResponse(url="/dashboard") \ No newline at end of file