You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The 'checkForPreApproval' method in the 'TofuUserApprovalHandler' class does not check if the prompt value is 'consent' but instead checks for value PROMPT_SEPARATOR. So: if (!prompts.contains(PROMPT_SEPARATOR)) {...} Should be: if (!prompts.contains(PROMPT_CONSENT)) {...}