fix: Fixed an issue with clearing application cookies during OAuth signout
@@ -546,6 +546,7 @@ async def signout(request: Request, response: Response):
if logout_url:
response.delete_cookie("oauth_id_token")
return RedirectResponse(
+ headers=response.headers,
url=f"{logout_url}?id_token_hint={oauth_id_token}"
)
else: