diff --git a/components/ExampleListSection.tsx b/components/ExampleListSection.tsx
index c299eea..c35d11e 100644
--- a/components/ExampleListSection.tsx
+++ b/components/ExampleListSection.tsx
@@ -56,13 +56,13 @@ const InnerGrid = ({
}) => (
<>
- {REPOS.map((repo, key) => (
+ {REPOS.map((repo, index) => (
3}
- hideOnMedium={key > 2}
+ hideOnSmall={index > 3}
+ hideOnMedium={index > 2}
totalContributors={
contributorsByRepo[repo.name]?.total ??
contributorsByRepo[repo.name]?.avatars.length ??