Skip to content

Commit

Permalink
fix(Stack): fix incorrect classes being generated (#6540)
Browse files Browse the repository at this point in the history
  • Loading branch information
kyletsang committed Jan 27, 2023
1 parent 7f633bf commit e3a77e1
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/Stack.tsx
Expand Up @@ -60,11 +60,13 @@ const Stack: BsPrefixRefForwardingComponent<'span', StackProps> =
className={classNames(
className,
bsPrefix,
...createUtilityClassName({
gap,
...createUtilityClassName(
{
gap,
},
breakpoints,
minBreakpoint,
}),
),
)}
/>
);
Expand Down

0 comments on commit e3a77e1

Please sign in to comment.