@@ -99,7 +99,7 @@ export function Sponsors() {
99
99
< div id = "sponsors" className = "bg-conf-black" >
100
100
< div className = "conf-block container" >
101
101
< h1 className = { classes . title } > Thanks to our 2024 sponsors!</ h1 >
102
- { sponsorDiamond . length && (
102
+ { sponsorDiamond . length > 0 && (
103
103
< >
104
104
< h3 className = { classes . heading } > Diamond</ h3 >
105
105
< List
@@ -109,7 +109,7 @@ export function Sponsors() {
109
109
/>
110
110
</ >
111
111
) }
112
- { sponsorPlatinum . length && (
112
+ { sponsorPlatinum . length > 0 && (
113
113
< >
114
114
< h3 className = { classes . heading } > Platinum</ h3 >
115
115
< List
@@ -119,7 +119,7 @@ export function Sponsors() {
119
119
/> { " " }
120
120
</ >
121
121
) }
122
- { sponsorGold . length && (
122
+ { sponsorGold . length > 0 && (
123
123
< >
124
124
< h3 className = { classes . heading } > Gold</ h3 >
125
125
< List
@@ -129,7 +129,7 @@ export function Sponsors() {
129
129
/>
130
130
</ >
131
131
) }
132
- { sponsorSilver . length && (
132
+ { sponsorSilver . length > 0 && (
133
133
< >
134
134
< h3 className = { classes . heading } > Silver</ h3 >
135
135
< List
@@ -139,7 +139,7 @@ export function Sponsors() {
139
139
/>
140
140
</ >
141
141
) }
142
- { workshopDaySponsors . length && (
142
+ { workshopDaySponsors . length > 0 && (
143
143
< >
144
144
< h3 className = { classes . heading } > Workshop Day Sponsor</ h3 >
145
145
< List
0 commit comments