From 8122f218a9cf34bbb38816b5c64c9a43e1464555 Mon Sep 17 00:00:00 2001 From: Moriz Wahl Date: Wed, 8 Dec 2021 11:14:34 +0100 Subject: [PATCH] render error message as it is --- frontend/src/views/Layout/DashboardLayout_gdd.vue | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/frontend/src/views/Layout/DashboardLayout_gdd.vue b/frontend/src/views/Layout/DashboardLayout_gdd.vue index 9487eadf7..8273685bd 100755 --- a/frontend/src/views/Layout/DashboardLayout_gdd.vue +++ b/frontend/src/views/Layout/DashboardLayout_gdd.vue @@ -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? }) },