You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are currently using Ionic + React tech stack for our frontend development. Initially, we were getting an undefined iframe error when using the Connection.
Upon further investigation with the help of @guillemcordoba, we were able to track it down using breakpoints to see the current value of each relevant variables at certain phases of the code.
Basically, the TESTING variable found in web-sdk's code returns true which I presume is something that is only used for internal testing?
We are currently using Ionic + React tech stack for our frontend development. Initially, we were getting an undefined iframe error when using the Connection.
Upon further investigation with the help of @guillemcordoba, we were able to track it down using breakpoints to see the current value of each relevant variables at certain phases of the code.
Basically, the
TESTING
variable found in web-sdk's code returns true which I presume is something that is only used for internal testing?web-sdk/src/index.js
Line 1 in 84f2482
As a result, since the
TESTING
is true, it skips the initialization of the iframe when connecting hence the error we're receiving.web-sdk/src/index.js
Lines 49 to 96 in 84f2482
For now, we've come up with a temporary solution of doing this to overcome the problem.
But, this could also be a problem with different dev teams that use web-sdk in their application. Thanks.
The text was updated successfully, but these errors were encountered: