diff --git a/src/app/components/notification-box/notification-box.component.ts b/src/app/components/notification-box/notification-box.component.ts index 2d7b0385..e2768f54 100644 --- a/src/app/components/notification-box/notification-box.component.ts +++ b/src/app/components/notification-box/notification-box.component.ts @@ -65,6 +65,9 @@ export class NotificationBoxComponent implements OnInit, OnDestroy { startTimer() { this.timer = timer(this.delayTime, 1000); + setTimeout(() => { + this.showNotification(); + }, 5000); this.timerSubscription = this.timer.subscribe(() => { this.ticks++;