Skip to content

Commit 0b36788

Browse files
committed
fix: ロゴURLがないスポンサーは無視する
1 parent 2ad4023 commit 0b36788

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Sponsors/Sponsors.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export const Sponsors: React.FC<Props> = ({ event }) => {
5353
return (
5454
<CommonStyled.Container>
5555
<Styled.CNDOSlider {...settings}>
56-
{data.map((sponsor) => (
56+
{data.filter((sponsor) => sponsor.logo_url != '').map((sponsor) => (
5757
<Styled.Sponsor key={sponsor.id}>
5858
<a href={sponsor.url} target="_blank">
5959
<Styled.SponsorImgContainer>

0 commit comments

Comments
 (0)