We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ad4023 commit 0b36788Copy full SHA for 0b36788
src/components/Sponsors/Sponsors.tsx
@@ -53,7 +53,7 @@ export const Sponsors: React.FC<Props> = ({ event }) => {
53
return (
54
<CommonStyled.Container>
55
<Styled.CNDOSlider {...settings}>
56
- {data.map((sponsor) => (
+ {data.filter((sponsor) => sponsor.logo_url != '').map((sponsor) => (
57
<Styled.Sponsor key={sponsor.id}>
58
<a href={sponsor.url} target="_blank">
59
<Styled.SponsorImgContainer>
0 commit comments