Hello! My team is developing a new application, that is loaded within the shadow DOM (open mode), we’ve noticed that it isn’t possible to load legacy CTAs through `
window.hbspt.cta.load(PORTAL_ID, TOUCHPOINT_ID, {
useNewLoader: 'true',region: 'na1',})
`. Since the shadow DOM’s mode is open, it is possible to modify its content from the outside, I assume that the HubSpot’s script, responsible for loading the CTA in the specified placement id, is looking for this placement id in the context of the document, and not shadowRoot as it should be when modifying shadow DOM’s content.
Is it possible to tweak the CTA loader to load those CTAs properly in the context of the shadow DOM?