Skip to content

Commit a74e7da

Browse files
committed
fix Alex breaking things
1 parent 6f8a1ce commit a74e7da

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

src/Components/Home/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ export default class Home extends React.Component {
1717
<Hero />
1818
<About />
1919
<Speakers />
20-
{/* <Schedule />
21-
<Sponsors /> */}
20+
{/* <Schedule /> */}
21+
<Sponsors />
2222
<Coc />
2323
</div>
2424
);

src/Components/SponsorsShowcase/index.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ export default class SponsorsShowcase extends React.Component<
1717
return (
1818
<div className="sponsors-showcase">
1919
{sponsors.map((row, i) => {
20+
console.log(row)
2021
return (
2122
<div key={i} className="sponsors-showcase--row">
2223
{row.map(sponsor => (
@@ -34,11 +35,11 @@ export default class SponsorsShowcase extends React.Component<
3435
</div>
3536
);
3637
})}
37-
{sponsors.map(sponsor => (
38+
{/* {sponsors.map(sponsor => (
3839
<a id={sponsor.id} key={sponsor.name} href={sponsor.link} target="_blank" rel="noopener noreferrer" style={{ gridArea: sponsor.id }}>
3940
<img src={sponsor.photo} />
4041
</a>
41-
))}
42+
))} */}
4243
</div>
4344
);
4445
}

0 commit comments

Comments
 (0)