We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0bbfdfc commit 0424831Copy full SHA for 0424831
apps/web/src/routes/_view/oss-friends.tsx
@@ -145,7 +145,7 @@ function FriendsSection({
145
return (
146
<section>
147
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-px bg-neutral-200">
148
- {friends.map((friend, index) => (
+ {friends.map((friend) => (
149
<a
150
key={friend.slug}
151
href={friend.href}
@@ -154,7 +154,7 @@ function FriendsSection({
154
className={cn([
155
"group flex flex-col bg-white overflow-hidden h-full",
156
"hover:bg-stone-50 transition-all",
157
- index >= friends.length - 3 && "border-b border-neutral-200",
+ "border-b border-neutral-200",
158
])}
159
>
160
<div className="aspect-40/21 bg-neutral-100 overflow-hidden shrink-0">
0 commit comments