Skip to content

Commit 8fbfe8a

Browse files
committed
Fix a type name
1 parent 66580cd commit 8fbfe8a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,24 +23,24 @@ function TierIcon() {
2323
)
2424
}
2525

26-
interface Image {
26+
interface Sponsor {
2727
icon: React.FC<React.SVGProps<SVGElement>>
2828
name: string
2929
link: string
3030
}
3131

32-
const sponsorDiamond: Image[] = [
32+
const sponsorDiamond: Sponsor[] = [
3333
{ icon: TheGuild, name: "The Guild", link: "https://the-guild.dev" },
3434
{ icon: IBM, name: "IBM", link: "https://www.ibm.com/products/api-connect" },
3535
]
3636

37-
const sponsorGold: Image[] = [
37+
const sponsorGold: Sponsor[] = [
3838
{ icon: Apollo, name: "Apollo", link: "https://www.apollographql.com/" },
3939
{ icon: Graphweaver, name: "Graphweaver", link: "https://graphweaver.com" },
4040
{ icon: Hasura, name: "Hasura", link: "https://hasura.io" },
4141
]
4242

43-
const sponsorSilver: Image[] = [
43+
const sponsorSilver: Sponsor[] = [
4444
{ icon: Stellate, name: "Stellate", link: "https://stellate.co" },
4545
{ icon: Tyk, name: "Tyk", link: "https://tyk.io/" },
4646
]
@@ -51,7 +51,7 @@ export interface SponsorsProps {
5151

5252
interface Tier {
5353
name: string
54-
items: Image[]
54+
items: Sponsor[]
5555
}
5656

5757
const sponsorTiers: Tier[] = [

0 commit comments

Comments
 (0)