From 8ab817dab86ea41f689af13a24d013a604b62696 Mon Sep 17 00:00:00 2001 From: Maanas Arora Date: Wed, 27 Aug 2025 19:41:12 -0400 Subject: [PATCH] fix: update SameSite attribute for access token cookie to 'none' --- server/convergent/routers/auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/convergent/routers/auth.py b/server/convergent/routers/auth.py index 9baff54..e640268 100644 --- a/server/convergent/routers/auth.py +++ b/server/convergent/routers/auth.py @@ -76,7 +76,7 @@ async def login( value=access_token, httponly=True, secure=True, - samesite="strict", + samesite="none", ) return {"access_token": access_token, "token_type": "bearer"}