For discussing the development and usage of Checkout UI extensions, post-purchase extensions, web pixels, Customer Accounts UI extensions, and POS UI extensions
- customer-account-ui-extensions target order-index not render in my order page:
- my code:
import {
reactExtension,
Text,
} from '@shopify/ui-extensions-react/customer-account';
export default reactExtension(
'customer-account.order-index.block.render',
() => <Extension />
);
function Extension() {
return <Text>I am a block extension that renders in the Orders section</Text>;
}
[[extensions.targeting]]
module = "./src/order-index-extension.tsx"
target = "customer-account.order-index.block.render"