From b89e0220c59d85393c21a1b27c409b775f405187 Mon Sep 17 00:00:00 2001 From: Mitan Omar Date: Thu, 16 May 2024 15:36:01 +0200 Subject: [PATCH] fix(frontend): error notifications in onboarding tour --- frontend/app/services/tour.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/app/services/tour.js b/frontend/app/services/tour.js index 4c89e0ee5..122d89175 100644 --- a/frontend/app/services/tour.js +++ b/frontend/app/services/tour.js @@ -159,8 +159,8 @@ export default class TourService extends Tour { await this.router.transitionTo( this.autostartTour.undoneTours.shift() ?? "index" ); - } catch (error) { - this.notify.error("unexpected error"); + } catch (_) { + _.toString(); } } };