From f1b6926b1d8cedfb414a6bafa179023561d90289 Mon Sep 17 00:00:00 2001 From: koalasat Date: Thu, 24 Jul 2025 16:15:04 +0200 Subject: [PATCH] Fix logs --- frontend/src/basic/TopBar/NotificationsDrawer/index.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/frontend/src/basic/TopBar/NotificationsDrawer/index.tsx b/frontend/src/basic/TopBar/NotificationsDrawer/index.tsx index 13b7276d..6b890e5d 100644 --- a/frontend/src/basic/TopBar/NotificationsDrawer/index.tsx +++ b/frontend/src/basic/TopBar/NotificationsDrawer/index.tsx @@ -98,7 +98,9 @@ const NotificationsDrawer = ({ const soundType = soundByStatus[orderStatus] ?? 'ding'; const sound = audio[soundType]; - console.log(sound); + + void sound.play(); + void sound.play(); void sound.play(); };