const iframe = document.querySelector('iframe');
console.log("Getting iframe", iframe)
if(iframe) {
console.log("found iframe")
const embedContent = iframe.contentDocument;
const tallyLinks = document.querySelectorAll('a[href^="https://tally.so"]');
console.log("links", links)
if (tallyLinks.length > 0) { // Check if there are any Tally links
for (let i = 0; i < tallyLinks.length; i++) { // Iterate through each link
tallyLinks[i].style.display = "none"; // Hide the link using display: none
}
}
}