diff --git a/scipost_django/colleges/forms.py b/scipost_django/colleges/forms.py
index 39f232d36b7fd1c0a224bb7680664d52055b5ca0..1e1ee96fba87bc1ffe050a2d560d1af5742a8260 100644
--- a/scipost_django/colleges/forms.py
+++ b/scipost_django/colleges/forms.py
@@ -765,7 +765,11 @@ class FellowshipNominationSearchForm(forms.Form):
             )
 
         nominations = (
-            FellowshipNomination.objects.all()
+            FellowshipNomination.objects.filter(
+                profile__in=Profile.objects.no_competing_interests_with(
+                    self.user.contributor.profile
+                )
+            )
             .annotate(
                 latest_round_deadline=latest_round_subquery("voting_deadline"),
                 latest_round_open=latest_round_subquery("voting_opens"),