This repository was archived by the owner on Mar 27, 2021. It is now read-only.

Description
I'm seeing this issue when viewing on Google Chrome browser on iOS:
Blocked a frame with origin "https://www.mycoolwebsite.com" from accessing a frame with origin "https://js.stripe.com". Protocols, domains, and ports must match.
Any suggestions. Here's where I'm adding the StripeProvider
ReactDOM.render(
<Provider store={store}>
<StripeProvider apiKey={STRIPE_KEY}>
<div>
<Router history={history} routes={routes} onUpdate={routerOnUpdate} />
</div>
</StripeProvider>
</Provider>,
document.getElementById('app')
);