Hey all, is anyone else seeing this?
Since this morning, whenever we open the product editor with the Intents API, the admin reloads our whole app iframe. We haven’t touched this code in months, and it was working fine.
const activity = await shopify.intents.invoke('edit:shopify/Product', { value: productGid });
const result = await activity.complete;
As soon as the product modal opens, our iframe reloads with ?_ps=1 tacked onto the URL, and when you close it, it reloads again. activity.complete never comes back, doesn’t matter if you save or close.
It’s extra painful for us because we call this from inside a . After the reload, the modal just sits there frozen with a spinner and we can’t close it from the app anymore.
For now we’re opening the product in a new admin tab instead, but it’d be nice to go back to the intent. Has anyone else hit this, or found a fix?