From 9ca5eb7a5d0c7c976c7b79aa03a931bc4d237a7b Mon Sep 17 00:00:00 2001 From: Kyle Kemp Date: Wed, 20 Sep 2023 12:38:58 -0500 Subject: [PATCH] ignore notification clear action on local --- client/src/app/app.module.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/client/src/app/app.module.ts b/client/src/app/app.module.ts index 55ea30d..018c3bf 100644 --- a/client/src/app/app.module.ts +++ b/client/src/app/app.module.ts @@ -70,7 +70,10 @@ export function getAuthToken() { }), NgxsLoggerPluginModule.forRoot({ disabled: !isDevMode(), - filter: (action) => !action.constructor.name.includes('GrabData'), + filter: (action) => + !['GrabData', '[Notifications] Clear Old'].includes( + action.constructor.name, + ), }), NgxsStoragePluginModule.forRoot({ key: allStores,