We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a0c874 commit 86418b3Copy full SHA for 86418b3
src/renderer/utils/notifications/filters/userType.ts
@@ -40,8 +40,9 @@ export function getUserTypeFilterCount(
40
return notifications.reduce(
41
(sum, account) =>
42
sum +
43
- account.notifications.filter((n) => filterNotificationByUserType(n, userType))
44
- .length,
+ account.notifications.filter((n) =>
+ filterNotificationByUserType(n, userType),
45
+ ).length,
46
0,
47
);
48
}
0 commit comments