Skip to content

Commit

Permalink
refactor: replace with correct opening and closing tag syntax with ch…
Browse files Browse the repository at this point in the history
…ildren in the middle
  • Loading branch information
Danielle254 committed Oct 18, 2024
1 parent d2ffa9e commit 89459e3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/(main)/league/[leagueId]/entry/[entryId]/week/Week.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -276,14 +276,14 @@ const Week = ({ entry, league, NFLTeams, week }: IWeekProps): JSX.Element => {
>
<Heading
as='h1'
children={`Week ${week} pick`}
className='pb-8'
/>
>{`Week ${week} pick`}
</Heading>
<Heading
as='h2'
children={`Entry ${entryName}`}
className='pb-8'
/>
>{`Entry ${entryName}`}
</Heading>
{pickHistory.length > 0 && (
<section
className="flex flex-wrap w-[90%] gap-4 overflow-x-scroll justify-center pb-10 items-center"
Expand Down

0 comments on commit 89459e3

Please sign in to comment.