diff --git a/src/routes/(app)/dashboard/+page.svelte b/src/routes/(app)/dashboard/+page.svelte index 419d9be6..9805b51a 100644 --- a/src/routes/(app)/dashboard/+page.svelte +++ b/src/routes/(app)/dashboard/+page.svelte @@ -316,10 +316,10 @@ ]; } - return newNotifications.filter((item) => - !notificationIsMuted(item, persons, repos) && $settings.gitlabOnlyInvolved - ? !item.notInvolved - : true + return newNotifications.filter( + (item) => + !notificationIsMuted(item, persons, repos) && + ($settings.gitlabOnlyInvolved ? !item.notInvolved : true) ); }