Skip to content

Commit

Permalink
🐛 fix(components/shared): linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ythecombinator committed Mar 5, 2024
1 parent 75d1519 commit 96eead7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/pages/talks/upcoming-talks-section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const UpcomingTalksSection: FunctionComponent<PropsWithChildren<UpcomingTalksSec
<SectionHeading title="️Upcoming Sessions" />
<div className="my-8 flex flex-col space-y-4 w-full">
{items.map((item) => (
<UpcomingTalksSectionItem {...item} />
<UpcomingTalksSectionItem key={`${item.talkSlug}-${item.eventName}`} {...item} />
))}
</div>
</SectionContainer>
Expand Down
2 changes: 1 addition & 1 deletion src/components/shared/logo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const Logo: React.FunctionComponent<{}> = () => {
height={48}
src={`/content/me/${memoji}.png`}
alt={siteMetadata.author}
loading='eager'
loading="eager"
/>
);
};
Expand Down

0 comments on commit 96eead7

Please sign in to comment.