From ca38c4851f184d2572654e972ddf84eef1a627ce Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Fri, 22 Aug 2025 02:26:39 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B(frontend)=20fix=20missing=20partic?= =?UTF-8?q?ipant=20name=20in=20recording=20toaster?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Restore participant name display in transcription and recording toast notifications that was accidentally removed in recent changes. Simple regression fix to ensure proper participant identification in notification messages. --- .../src/features/notifications/MainNotificationToast.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/frontend/src/features/notifications/MainNotificationToast.tsx b/src/frontend/src/features/notifications/MainNotificationToast.tsx index 4d08d052..0583278b 100644 --- a/src/frontend/src/features/notifications/MainNotificationToast.tsx +++ b/src/frontend/src/features/notifications/MainNotificationToast.tsx @@ -98,6 +98,7 @@ export const MainNotificationToast = () => { case NotificationType.ScreenRecordingLimitReached: toastQueue.add( { + participant, type: notification.type, }, { timeout: NotificationDuration.ALERT }