fix error messages
This commit is contained in:
parent
f8db1e1e9a
commit
ef32d1e78f
|
@ -11,7 +11,7 @@ const fetchEtherBalance = (safeAddress: string) => async (dispatch: ReduxDispatc
|
|||
dispatch(updateSafe({ address: safeAddress, ethBalance }))
|
||||
} catch (err) {
|
||||
// eslint-disable-next-line
|
||||
console.error('Error while loading active tokens from storage:', err)
|
||||
console.error('Error when fetching Ether balance:', err)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -45,7 +45,7 @@ const fetchTokenBalances = (safeAddress: string, tokens: List<Token>) => async (
|
|||
dispatch(updateSafe({ address: safeAddress, balances: List(withBalances) }))
|
||||
} catch (err) {
|
||||
// eslint-disable-next-line
|
||||
console.error('Error while loading active tokens from storage:', err)
|
||||
console.error('Error when fetching token balances:', err)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue