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:
Jeff Emmett 2026-03-10 19:41:34 -07:00
parent 23f0cce9a1
commit 3f71b219bb
1 changed files with 1 additions and 1 deletions

View File

@ -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">&times;</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);