diff --git a/components/club-selector.tsx b/components/club-selector.tsx
index 7ff77934..094c05f1 100644
--- a/components/club-selector.tsx
+++ b/components/club-selector.tsx
@@ -99,7 +99,11 @@ const UnselectedClub = ({
marginBottom: 5,
}}
>{clubItem.name}
- {clubItem.count_members} people
+
+ {clubItem.count_members}
+ {' '}
+ {clubItem.count_members === 1 ? 'person' : 'people'}
+
);
};