diff --git a/src/auth/oauth/oauth.ts b/src/auth/oauth/oauth.ts index 6c9098724..d92a9a6f4 100644 --- a/src/auth/oauth/oauth.ts +++ b/src/auth/oauth/oauth.ts @@ -63,7 +63,7 @@ const ShopifyOAuth = { cookies.set(ShopifyOAuth.SESSION_COOKIE_NAME, session.id, { signed: true, expires: new Date(Date.now() + 60000), - sameSite: 'none', + sameSite: 'lax', secure: true, }); @@ -173,7 +173,7 @@ const ShopifyOAuth = { cookies.set(ShopifyOAuth.SESSION_COOKIE_NAME, currentSession.id, { signed: true, expires: oauthSessionExpiration, - sameSite: 'none', + sameSite: 'lax', secure: true, });