For discussing the development and usage of Checkout UI extensions, post-purchase extensions, web pixels, Customer Accounts UI extensions, and POS UI extensions
Hello, i am developing a extension for new customer account UI.
[[extensions.targeting]]
module = "./src/MenuActionExtension.jsx"
target = "customer-account.order.action.menu-item.render"
[[extensions.targeting]]
module = "./src/MenuPageRender.jsx"
target = "customer-account.order.action.render"
[extensions.capabilities]
# Gives your extension access to directly query Shopify’s storefront API.
# https://shopify.dev/docs/api/customer-account-ui-extensions/unstable/configuration#api-access
api_access = true
# Gives your extension access to make external network calls, using the
# JavaScript `fetch()` API. Learn more:
# https://shopify.dev/docs/api/customer-account-ui-extensions/unstable/configuration#network-access
network_access = true
I have two targets a button "customer-account.order.action.menu-item.render" and a modal that opens when clicking the button "customer-account.order.action.render".
When i preview the extension with "shopify app dev" the modal opens and displays fine.
But after the deployment of the extension the modal opens and displays an error "Try again in a few minutes".
I dont see anything in console.log and there also seems no network request to be happening.
How should i debug this kind of issue? Does anyone have experience with this?
Help is very much appreciated!
Thanks!
Martin