Skip to content

Commit

Permalink
fix(order): fixing skip error display list
Browse files Browse the repository at this point in the history
  • Loading branch information
pedroapfilho committed Jul 26, 2022
1 parent 1ce9f8b commit 36cdb3a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -810,7 +810,7 @@ export default ({ api, coreSagas, networks }: { api: APIType; coreSagas: any; ne

yield put(A.setStep({ step: 'CHECKOUT_CONFIRM' }))

if (!skipErrorDisplayList.includes(e as BS_ERROR)) {
if (skipErrorDisplayList.includes(e as BS_ERROR)) {
yield put(actions.form.stopSubmit(FORM_BS_CHECKOUT_CONFIRM))

return
Expand Down

0 comments on commit 36cdb3a

Please sign in to comment.