render error message as it is

This commit is contained in:
Moriz Wahl 2021-12-08 11:14:34 +01:00
parent 983c05a1b9
commit 8122f218a9

View File

@ -133,9 +133,7 @@ export default {
})
.catch((error) => {
this.pending = true
if (error.message === 'GraphQL error: 403.13 - Client certificate revoked') {
this.$toasted.error(this.$t('error.session-expired'))
}
this.$toasted.error(error.message)
// what to do when loading balance fails?
})
},