From 39836941fa82d4080146df92732dd966e93a4c8c Mon Sep 17 00:00:00 2001 From: Jeremiah <42397676+jlsnow301@users.noreply.github.com> Date: Sun, 17 Nov 2024 11:01:43 -0800 Subject: [PATCH] Fixes missed section tags (#33) --- lib/components/Section.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/components/Section.tsx b/lib/components/Section.tsx index acd5d3d..c751578 100644 --- a/lib/components/Section.tsx +++ b/lib/components/Section.tsx @@ -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), ])} @@ -117,8 +117,8 @@ export function Section(props: Props) {