I have a app in production which has a web-pixel extension. It was working perfectly. But in recent 2 or 3 days something strange happend. Click event not firing when click on Apply button to apply coupon or gift card in checkout page. What was the problem? Is recently shopify changes its policy.
import {register} from '@shopify/web-pixels-extension';
register(({ analytics }) => {
analytics.subscribe(‘clicked’, (event) => {
console.log(event)
});
});
N.B - It was working perfectly in my production app.
