Open nullndr opened 2 months ago
Setup the shopify remix.run template and run npm run dev, open the navigation tab and you will see just one of each request:
npm run dev
Now adds a <ui-modal/> on the the app._index.ts file, like:
<ui-modal/>
app._index.ts
return ( <Page> <TitleBar title="Remix app template"> <button variant="primary" onClick={generateProduct}> Generate a product </button> </TitleBar> <BlockStack gap="500"> <ui-modal id="foo"></ui-modal> ... </BlockStack> </Page> );
Clear the navigation logs and reload the page, you will now see each request made twice:
Sorry I wanted to open this issue in the app bridge repo, can some admin move this?
Setup the shopify remix.run template and run
npm run dev
, open the navigation tab and you will see just one of each request:Now adds a
<ui-modal/>
on the theapp._index.ts
file, like:Clear the navigation logs and reload the page, you will now see each request made twice: