function hideIFrame(): void { const flourishComponent = document.querySelectorAll( '[data-component="flourish"]' ) flourishComponent.forEach((component) => { component.classList.add('disable-iframe') }) } function init(featureFlag: boolean = true): void { // turning the feature flag off will hide the iframe and display the fallback image if (!featureFlag) { hideIFrame() } } export default init