Looks, there is some issue with moralis, when push cookie?
What these error means? Caused by?
Indicate whether to send a cookie in a cross-site request by specifying its SameSite attribute
Because a cookie’s SameSite attribute was not set or is invalid, it defaults to SameSite=Lax, which prevents the cookie from being sent in a cross-site request. This behavior protects user data from accidentally leaking to third parties and cross-site request forgery.
Resolve this issue by updating the attributes of the cookie:
- Specify
SameSite=NoneandSecureif the cookie should be sent in cross-site requests. This enables third-party use. - Specify
SameSite=StrictorSameSite=Laxif the cookie should not be sent in cross-site requests.

