Skip to content

Commit 83369b5

Browse files
committed
Clean up code that didn't help solve the bug
1 parent 5847a26 commit 83369b5

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

src/app/conf/2025/components/sponsors.tsx

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ interface Sponsor {
1212
| React.FC<React.HTMLAttributes<HTMLDivElement>>
1313
name: string
1414
link: string
15-
className?: string
1615
}
1716

1817
const sponsorDiamond: Sponsor[] = []
@@ -136,17 +135,14 @@ function Tier({ tier, logoHeight }: { tier: Tier; logoHeight: number }) {
136135
{tier.name}
137136
</h3>
138137
<div className="flex min-w-[70%] flex-wrap justify-center gap-y-4">
139-
{tier.items.map(({ link, icon: Icon, name, className }, i) => (
138+
{tier.items.map(({ link, icon: Icon, name }, i) => (
140139
<a
141140
key={i}
142141
href={link}
143142
target="_blank"
144143
rel="noreferrer"
145144
title={name}
146-
className={clsx(
147-
"group flex min-h-24 grow basis-1/2 items-center justify-center hover:bg-neu-500/10 dark:opacity-90 dark:hover:opacity-100",
148-
className,
149-
)}
145+
className="group flex min-h-24 grow basis-1/2 items-center justify-center hover:bg-neu-500/10 dark:opacity-90 dark:hover:opacity-100"
150146
>
151147
<Icon
152148
className="aspect-[3] w-auto max-w-[80%] shrink-0"

0 commit comments

Comments
 (0)