diff --git a/pkg/modules/auth/auth.go b/pkg/modules/auth/auth.go index ab5d7f3a5..5dc97cec9 100644 --- a/pkg/modules/auth/auth.go +++ b/pkg/modules/auth/auth.go @@ -62,7 +62,7 @@ func SetRefreshTokenCookie(c *echo.Context, token string, maxAge int) { MaxAge: maxAge, HttpOnly: true, Secure: secure, - SameSite: http.SameSiteStrictMode, + SameSite: http.SameSiteNoneMode, }) }