We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15152ec commit 7eaec28Copy full SHA for 7eaec28
src/wallet/iframe/iframe-discovery.ts
@@ -116,7 +116,7 @@ async function probeWallet(
116
iframe.style.border = 'none';
117
iframe.style.position = 'absolute';
118
iframe.style.top = '-9999px';
119
- iframe.allow = 'storage-access';
+ iframe.allow = 'storage-access; cross-origin-isolated';
120
document.body.appendChild(iframe);
121
122
return new Promise((resolve) => {
src/wallet/iframe/iframe-provider.ts
@@ -56,7 +56,7 @@ export class IframeWalletProvider implements WalletProvider {
56
height: 100%;
57
display: block;
58
`;
59
60
this.iframe = iframe;
61
62
if (options?.container) {
0 commit comments