Skip to content

Commit

Permalink
Merge branch 'main' into feature/spearkers-slideshow
Browse files Browse the repository at this point in the history
  • Loading branch information
Tacio Medeiros committed Oct 5, 2023
2 parents 257cd4d + f81356b commit 323eac3
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/components/sponsors-section/sponsors-section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ const SponsorsSection: React.FC<SponsorsSectionProps> = ({ sponsors }) => {
const mapSponsorCard = (sponsor: Sponsor, isStaff: boolean) => {
if (sponsor.logo)
return (<Col key={sponsor.id}><SponsorCard {...sponsor} isStaff={isStaff}></SponsorCard></Col>)
return <Col></Col>
}

const mapSponsorLevel = (sponsorLevel: SponsorLevel, isStaff: boolean) => {
Expand Down Expand Up @@ -66,7 +65,6 @@ const SponsorsSection: React.FC<SponsorsSectionProps> = ({ sponsors }) => {
<Container fluid style={{ marginBottom: '100px', marginTop: '30px' }}>
<div id="sponsors">
{SPONSORS_LIST.map((el) => {

if (sponsors != null && sponsors[el] != null)
return mapSponsorLevel(sponsors[el], el === "staff")
return <></>
Expand Down

0 comments on commit 323eac3

Please sign in to comment.