Scott Dixon

Results 18 comments of Scott Dixon

Hey @NickHazen @Nazarii-Tymoshchuk, Thanks for all the info. `customerAccount.getAccessToken()` returns a [Customer Account API token](https://shopify.dev/docs/api/customer#step-obtain-access-token) (not a Storefront API [`customerAccessToken`](https://shopify.dev/docs/api/storefront/2024-07/objects/customeraccesstoken)) 😅 Generating a customerAccessToken requires [an exchange process](https://shopify.dev/docs/api/customer/2024-10/mutations/storefrontCustomerAccessTokenCreate). The Customer...

Agreed @Nazarii-Tymoshchuk. It's super awkward right now. There's a project in the works to make CAAPI tokens usable with Storefront API which should tidy this whole thing up.

Thanks for reporting this @danhemerlein. The screen recording was super helpful. Can you confirm `env.PUBLIC_CHECKOUT_DOMAIN` is set? I'm able to replicate inconsistencies when `env.PUBLIC_CHECKOUT_DOMAIN` isn't set. Feels like a race...

Thanks for the report @joelschout Can you confirm you've got [additional tools installed](https://github.com/Shopify/hydrogen/issues/2523#issuecomment-2359424284)?

Thanks for flagging this @dcodrin. I'm able to replicate. @wizardlyhel - seems like `window.privacyBanner` becomes undefined.

Hey @porrodv Try something like this: ```js fetcher.submit( { cartFormInput: JSON.stringify({ action: 'ActionTest', inputs: { test: ['test1', 'test2'], }, }), }, {method: 'POST', action: '/cart'}, ); ```

Thanks for raising this @dvnrsn. I'm able to replicate.