(state)
| 3327 | } |
| 3328 | |
| 3329 | function shouldSkipLoginVerificationForCpaCallback(state) { |
| 3330 | if (typeof navigationUtils !== 'undefined' && navigationUtils?.shouldSkipLoginVerificationForCpaCallback) { |
| 3331 | return navigationUtils.shouldSkipLoginVerificationForCpaCallback(state); |
| 3332 | } |
| 3333 | return getPanelMode(state) === 'cpa' |
| 3334 | && normalizeCpaCallbackMode(state?.cpaCallbackMode) === 'step6'; |
| 3335 | } |
| 3336 | |
| 3337 | function matchesSourceUrlFamily(source, candidateUrl, referenceUrl) { |
| 3338 | if (typeof navigationUtils !== 'undefined' && navigationUtils?.matchesSourceUrlFamily) { |
no test coverage detected