(state)
| 3318 | } |
| 3319 | |
| 3320 | function shouldBypassStep9ForLocalCpa(state) { |
| 3321 | if (typeof navigationUtils !== 'undefined' && navigationUtils?.shouldBypassStep9ForLocalCpa) { |
| 3322 | return navigationUtils.shouldBypassStep9ForLocalCpa(state); |
| 3323 | } |
| 3324 | return normalizeLocalCpaStep9Mode(state?.localCpaStep9Mode) === 'bypass' |
| 3325 | && Boolean(state?.localhostUrl) |
| 3326 | && isLocalCpaUrl(state?.vpsUrl); |
| 3327 | } |
| 3328 | |
| 3329 | function shouldSkipLoginVerificationForCpaCallback(state) { |
| 3330 | if (typeof navigationUtils !== 'undefined' && navigationUtils?.shouldSkipLoginVerificationForCpaCallback) { |
nothing calls this directly
no test coverage detected