Hi,
thanks for replying. I managed to solve it by setting the value of a separate custom hidden field.
const input = document.querySelector('[name="skipVerification"]'); if (input) { input.value = 'true'; }
Then in my action, inside the onContinuePostLogin
, I can capture the value like this:
const skipVerification = event.prompt?.fields?.skipVerification === ‘true’;