Fix notification number

This commit is contained in:
Chocobozzz
2023-02-14 10:03:18 +01:00
parent 9625be3857
commit 4de99f22df

View File

@@ -38,7 +38,7 @@ export class NotificationComponent implements OnInit, OnDestroy {
this.userNotificationService.countUnreadNotifications()
.subscribe({
next: result => {
this.unreadNotifications = 102
this.unreadNotifications = result
this.subscribeToNotifications()
},