I'm also encountering issues with custom

I'm also encountering issues with custom Actions. My custom action is called according to the zaraz debugger console (screenshot 1)
The event which is fired is called "purchase" (screenshot 2)
But my managed component is not running the code even though the eventListener is correctly implemented:
manager.addEventListener('purchase', async event => {
    console.log('purchase', event)
    await sendEventPurchase(event, settings)
  })

The weird thing is, that occasionally the event is correctly executed (I'd say 10% of the time). Any suggestions?
image.png
image.png
Was this page helpful?