Skip to content

Commit

Permalink
chore(logs): add debug logging to institutional signin
Browse files Browse the repository at this point in the history
  • Loading branch information
schnogz committed May 16, 2022
1 parent a265689 commit 98a0683
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,9 @@ export default ({ api, coreSagas, networks }) => {
finalizeLoginMethod()
// @ts-ignore
} catch (e: { code?: number }) {
yield put(actions.auth.exchangeLoginFailure(e.code))
// eslint-disable-next-line
console.error('ERROR', e)
yield put(actions.auth.exchangeLoginFailure(e?.code))
yield put(stopSubmit(LOGIN_FORM))
// determine action for error type
switch (true) {
Expand Down

0 comments on commit 98a0683

Please sign in to comment.