Connecting customer account to checkout via store

Connecting customer account to checkout via store

yklym1
Shopify Partner
1 0 0

Hello everybody! 

I am a little bit confused about the way storefront API works regardless "CheckoutCustomerAssociate" mutation. 

 

I use it like this 

 

mutation CheckoutCustomerAssociate(
    $checkoutId: ID!
    $customerAccessToken: String!
  ) {
    checkoutCustomerAssociateV2(
      checkoutId: $checkoutId
      customerAccessToken: $customerAccessToken
    ) {
      checkout {
        webUrl
      }
      checkoutUserErrors {
        code
        field
        message
      }
    }
  }

 

 

but the result I get can differ due to the user's device. For example, some guys from our team get it like this: 

 

yklym1_1-1663166317273.png

while most of the users just get email field prefilled 

yklym1_2-1663166386990.png

Personally, I can't get the first scenario even when I try the same account as the screenshot's author did. I'm wondering, what can cause such differences in the behavior and how could I achieve them both. 

Replies 0 (0)