master^2
Pete Matsyburka 5 days ago
parent 65372c52aa
commit c75050fa46

@ -497,10 +497,10 @@ export default {
body: JSON.stringify(payload) body: JSON.stringify(payload)
}) })
if (!resp.ok) throw new Error('Failed to start KBA')
const data = await resp.json() const data = await resp.json()
if (!resp.ok) throw new Error(data.error || 'Failed to start KBA')
if (data.result && data.result.action === 'FAIL') { if (data.result && data.result.action === 'FAIL') {
if (data.result.detail === 'NO MATCH') { if (data.result.detail === 'NO MATCH') {
throw new Error('Unfortunately, we were unable to start Knowledge Based Authentication with the details provided. Please review and confirm that all your personal details are correct.') throw new Error('Unfortunately, we were unable to start Knowledge Based Authentication with the details provided. Please review and confirm that all your personal details are correct.')

Loading…
Cancel
Save