From 84e68d7ab88aa44c0fa99304887569f859202c0a Mon Sep 17 00:00:00 2001 From: Jack Anderson Date: Mon, 16 Dec 2024 10:31:49 +0000 Subject: [PATCH] Reduce timeout on refreshing notifications --- core/app/shell/src/app/app.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/app/shell/src/app/app.component.ts b/core/app/shell/src/app/app.component.ts index ed097634c..5eef88902 100644 --- a/core/app/shell/src/app/app.component.ts +++ b/core/app/shell/src/app/app.component.ts @@ -65,7 +65,7 @@ export class AppComponent { setTimeout(() => { this.notificationStore.conditionalNotificationRefresh(); this.recentlyViewed.conditionalGlobalRefresh() - }, 1000); + }, 500); } if (routerEvent instanceof NavigationEnd) {