fix(rflows): remove iframe sandbox restricting Transak widget
The sandbox attribute was blocking Transak's internal redirects, causing T-INF-101 access denied errors. Transak needs full iframe capabilities for its payment flow. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
23f0cce9a1
commit
3f71b219bb
|
|
@ -3764,7 +3764,7 @@ class FolkFlowsApp extends HTMLElement {
|
|||
<button id="onramp-close" style="position:absolute;top:8px;right:12px;z-index:10;
|
||||
background:none;border:none;color:white;font-size:24px;cursor:pointer">×</button>
|
||||
<iframe src="${url}" style="width:100%;height:100%;border:none"
|
||||
allow="camera;microphone;payment" sandbox="allow-scripts allow-same-origin allow-popups allow-forms"></iframe>
|
||||
allow="camera;microphone;payment"></iframe>
|
||||
</div>`;
|
||||
|
||||
document.body.appendChild(modal);
|
||||
|
|
|
|||
Loading…
Reference in New Issue