From 96320c3cc483309a3674f85bee65a6324686995e Mon Sep 17 00:00:00 2001 From: grngxd <36968271+grngxd@users.noreply.github.com> Date: Wed, 30 Jul 2025 11:17:23 +0100 Subject: [PATCH] clean up callback to dashboard url :sob: --- internal/api/routes/auth.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/api/routes/auth.go b/internal/api/routes/auth.go index 4ed3f2c..5b56d56 100644 --- a/internal/api/routes/auth.go +++ b/internal/api/routes/auth.go @@ -100,7 +100,7 @@ func RegisterAuthRoutes(cfg *types.StereoConfig, api *gin.RouterGroup) { }) */ c.SetCookie("jwt", jwt, int(t.ExpiresIn), "", cfg.Domain, true, true) - c.Redirect(http.StatusTemporaryRedirect, cfg.FrontendUri+"/dashboard?jwt_set=true") + c.Redirect(http.StatusTemporaryRedirect, cfg.FrontendUri+"/dashboard") }) api.GET("/auth/me", session.SessionMiddleware(cfg.JWTSecret), func(c *gin.Context) {