Skip to content

Commit

Permalink
fix: prettier and lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
celinechoiii authored Nov 18, 2024
1 parent 2b159cc commit 6a82c06
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions app/onboarding/general/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,19 +55,25 @@ export default function Onboarding() {
</div>
<Container>
<Title>Tell us a bit about yourself!</Title>
<text>First Name <RedAsterisk>*</RedAsterisk></text>
<text>
First Name <RedAsterisk>*</RedAsterisk>
</text>
<Input
name="firstName"
value={generalInfo.firstName}
onChange={handleChange}
/>
<text>Last Name <RedAsterisk>*</RedAsterisk></text>
<text>
Last Name <RedAsterisk>*</RedAsterisk>
</text>
<Input
name="lastName"
value={generalInfo.lastName}
onChange={handleChange}
/>
<text>Phone Number <RedAsterisk>*</RedAsterisk></text>
<text>
Phone Number <RedAsterisk>*</RedAsterisk>
</text>
<Input
name="phoneNumber"
value={generalInfo.phoneNumber}
Expand Down

0 comments on commit 6a82c06

Please sign in to comment.