Skip to content

Commit

Permalink
fix(ui): Removes empty space during continue step (#4239)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcarpenter authored Sep 30, 2024
1 parent 1a1247c commit cb41e2c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .changeset/tiny-scissors-punch.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
---
4 changes: 2 additions & 2 deletions packages/ui/src/components/sign-up/steps/continue.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ export function SignUpContinue() {
<GlobalError />

<Card.Body>
<div className='space-y-4'>
<div className='flex flex-col gap-y-4'>
{firstNameEnabled && lastNameEnabled ? (
<div className='flex gap-4'>
<div className='flex gap-4 empty:hidden'>
<FirstNameField
required={firstNameRequired}
disabled={isGlobalLoading}
Expand Down

0 comments on commit cb41e2c

Please sign in to comment.