I'm setting the cookie via custom headers in the next.config.js file. Only the refresh token gets set. The second token is ignored.
key: 'Set-Cookie',
value: `RefreshTokenKey = "some_token"; AccessTokenKey = "some_token"; SameSite=Strict; HttpOnly`,
}```