Fix processing of incoming notifications for unfilterable types (#33429)

This commit is contained in:
Claire 2025-01-02 14:22:25 +01:00 committed by Sunoru
parent 467fc3c22e
commit 0299c8d57a
Signed by: sunoru
GPG key ID: 442B84461FD0355A

View file

@ -155,7 +155,7 @@ export const processNewNotificationForGroups = createAppAsyncThunk(
const showInColumn =
activeFilter === 'all'
? notificationShows[notification.type]
? notificationShows[notification.type] !== false
: activeFilter === notification.type;
if (!showInColumn) return;