Skip to content

Commit

Permalink
Fixes missed section tags (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
jlsnow301 authored Nov 17, 2024
1 parent 33301a7 commit 3983694
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/components/Section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export function Section(props: Props) {
fitted && 'Section--fitted',
scrollable && 'Section--scrollable',
scrollableHorizontal && 'Section--scrollableHorizontal',
flexGrow && 'Section__flex',
flexGrow && 'Section--flex',
className,
computeBoxClassName(rest),
])}
Expand All @@ -117,8 +117,8 @@ export function Section(props: Props) {
<div
className={classes([
'Section__content',
!!stretchContents && 'content__stretchContents',
!!noTopPadding && 'content__noTopPadding',
stretchContents && 'Section__content--stretchContents',
noTopPadding && 'Section__content--noTopPadding',
])}
onScroll={onScroll}
// For posterity: the forwarded ref needs to be here specifically
Expand Down

0 comments on commit 3983694

Please sign in to comment.