1
0
forked from noxious/client

Notifications bug fix

This commit is contained in:
2024-06-06 19:17:02 +02:00
parent 01bbd94a3e
commit 356cb94cc2
3 changed files with 10 additions and 10 deletions

View File

@ -24,7 +24,6 @@ function closeNotification(id: string) {
function setupNotificationListener(connection: any) {
connection.on('notification', (data: { message: string }) => {
notifications.addNotification({
id: Math.random().toString(16),
message: data.message
})
})