From fcbca6f3985a08e1f11748dacd1f00f39ffc6eb7 Mon Sep 17 00:00:00 2001 From: Stephanie Gredell Date: Wed, 10 Sep 2025 00:10:02 -0700 Subject: [PATCH] fix redirect after login to go to the first level --- internal/auth/auth.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/auth/auth.go b/internal/auth/auth.go index 12e3ea1..771b69c 100644 --- a/internal/auth/auth.go +++ b/internal/auth/auth.go @@ -131,7 +131,7 @@ func CallbackHandler(w http.ResponseWriter, r *http.Request) { Secure: true, // Set to true in production (HTTPS) }) - http.Redirect(w, r, "/play", http.StatusFound) + http.Redirect(w, r, "/play/chat-app", http.StatusFound) } func GenerateJWT(userID string, login string, avatarUrl string) (string, error) {