From 673063355ecebe63025828c5b9c2e7421e8f51aa Mon Sep 17 00:00:00 2001 From: Ming Wang Date: Tue, 16 Jan 2024 13:32:02 -0500 Subject: [PATCH] s --- src/app/Shared/Services/Api.service.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/Shared/Services/Api.service.tsx b/src/app/Shared/Services/Api.service.tsx index be071fae9b..8a595851b5 100644 --- a/src/app/Shared/Services/Api.service.tsx +++ b/src/app/Shared/Services/Api.service.tsx @@ -1454,9 +1454,9 @@ export class ApiService { if (!suppressNotifications) { try { const body = JSON.parse(detail).data.reason; - this.notifications.danger(`${title}`, body); + this.notifications.danger(title, body); } catch { - this.notifications.danger(`${title}`, detail); + this.notifications.danger(title, detail); } } });