Skip to content

Commit

Permalink
fix: [FormButtonGroup] Add missing flex class that got accidentally…
Browse files Browse the repository at this point in the history
… removed
  • Loading branch information
meissadia committed Jan 24, 2025
1 parent cb68368 commit 9e6c88d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/FormButtonGroup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ function FormButtonGroup({
isFilingStep = false,
children,
}: FormButtonGroupProperties & JSX.IntrinsicElements['div']): JSX.Element {
const classnames = ['mt-[1.875rem]'];
const classnames = ['mt-[1.875rem] flex'];
classnames.push(isFilingStep ? 'gap-[1.125rem]' : 'gap-[0.625rem]');
if (className) classnames.push(className);
return <div className={classnames.join(' ')}>{children}</div>;
Expand Down

0 comments on commit 9e6c88d

Please sign in to comment.