Hi. Need help from monday.com team or anyone who can help in our case
Our app uses a “hosted iframe tokenizer” API of Card Connect to get card details in a secure way. When integrated in our app and testing it, it always lags to the point that the browser hangs. We found out that every time we do some action in the iframe, It makes an infinite network request to some URL.

As you can see in the photo above, it has many request to this url and this ONLY happens everytime we do some action in the iframe that we put in our app code.
This is the other details of that URL:

We believe the netwwork cal is on monday.com side. Because when we test the hosted iframe tokenizer in local and other server, it works properly and not many network request is made.
Our front end is written and ReactJS and here’s how we used the iframe in our code. It’s mostly just a simple render:
<div}>
{useIframeTokenizer ? (
<>
<iframe
id="tokenFrame"
name="tokenFrame"
src={"https://fts-uat.cardconnect.com/...."}
style={{
width: "100%",
height: "100%",
border: "none",
}}
></iframe>
<input
type="hidden"
name="mytoken"
id="mytoken"
value={token}
/>
</>
) : (
<>
....
</>
)
We need this feature in our app but this blocks us from developing and testing it. Hopefully to hear some response to monday.com team or to others who have same case as us. TYIA