fix(challenge-modal): add allow-same-origin to iframe sandbox

This commit is contained in:
plebeius
2025-10-11 17:11:38 +02:00
parent d66fc83a68
commit 0bdcb4b985

View File

@@ -221,7 +221,7 @@ const RegularChallengeContent = ({ challenge, closeModal }: RegularChallengeCont
<iframe
ref={iframeRef}
src={iframeUrlState}
sandbox='allow-scripts allow-forms allow-popups allow-top-navigation-by-user-activation'
sandbox='allow-scripts allow-forms allow-popups allow-same-origin allow-top-navigation-by-user-activation'
onLoad={handleIframeLoad}
className={styles.iframe}
title={t('challenge_iframe', { defaultValue: 'Challenge authentication' })}