diff --git a/src/app/sponsors/Sponsors.tsx b/src/app/sponsors/Sponsors.tsx
index 9aea8c55..ea1be431 100644
--- a/src/app/sponsors/Sponsors.tsx
+++ b/src/app/sponsors/Sponsors.tsx
@@ -11,7 +11,7 @@ const SPONSOR_TYPE_COLORS = {
function SponsorTypeTitle({ type }: { type: SponsorType }) {
const color = SPONSOR_TYPE_COLORS[type];
return (
-
+
Our{' '}
@@ -32,16 +32,13 @@ function SponsorTypeTitle({ type }: { type: SponsorType }) {
style={{ backgroundColor: color }}
/>
-
+
);
}
-type SponsorCardProps = Sponsor & { reverse?: boolean };
-function SponsorCard({ image, name, description, website, type, reverse }: SponsorCardProps) {
+function SponsorCard({ image, name, description, website, type }: Sponsor) {
return (
-
+
+
{SPONSOR_TYPES.map((type) => {
const sponsors = getSponsors(type);
if (sponsors.length === 0) return;
return (
- {sponsors.map((sponsor, i) => {
- count++;
- return (
-
- );
- })}
+ {sponsors.map((sponsor, i) => (
+
+ ))}
);
})}