Skip to content

Commit

Permalink
fixes #6766; Misaligned label in external results (#6769)
Browse files Browse the repository at this point in the history
  • Loading branch information
rithviknishad committed Dec 1, 2023
1 parent 47511a3 commit 737ef2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Components/ExternalResult/ResultList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -264,11 +264,11 @@ export default function ResultList() {
value={qParams.name}
placeholder="Search by name"
/>
<div className="my-2 text-sm font-medium">Search by number</div>
<div className="w-full max-w-sm">
<PhoneNumberFormField
label="Search by number"
name="mobile_number"
labelClassName="hidden"
labelClassName="my-2 text-sm font-medium"
value={phone_number}
onChange={(e) => setPhoneNum(e.value)}
error={phoneNumberError}
Expand Down

0 comments on commit 737ef2d

Please sign in to comment.