Skip to content

Commit

Permalink
ignore notification clear action on local
Browse files Browse the repository at this point in the history
  • Loading branch information
seiyria committed Sep 20, 2023
1 parent f468476 commit 9ca5eb7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion client/src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 9ca5eb7

Please sign in to comment.