I looked at the console and noticed these warnings
A cookie associated with a cross-site resource at http://google.com/ was set without the SameSite a
A solution that worked for me:
If you are using PHP, add this line to the beginning
header('Set-Cookie: cross-site-cookie=name; SameSite=None; Secure');