Skip to content

Commit

Permalink
fix: Phone dropdown field has extra width (#6866)
Browse files Browse the repository at this point in the history
## Description

This PR solves the issue #6865 

## Current Behaviour
<img width="486" alt="Screenshot 2024-09-03 at 2 04 55 AM"
src="https://github.com/user-attachments/assets/c88f3c22-0b18-4974-a4ea-94ecd5f1379d">

## Expected behavior
<img width="518" alt="Screenshot 2024-09-03 at 2 05 46 AM"
src="https://github.com/user-attachments/assets/2a6cb64a-7858-4607-85a4-0214aeacc2ab">
  • Loading branch information
harshit078 authored Sep 24, 2024
1 parent 825dfeb commit 7c90e71
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export const PhoneCountryPickerDropdownSelect = ({
);

return (
<DropdownMenu width="200px" disableBlur>
<DropdownMenu width="auto" disableBlur>
<DropdownMenuSearchInput
value={searchFilter}
onChange={(event) => setSearchFilter(event.currentTarget.value)}
Expand Down

0 comments on commit 7c90e71

Please sign in to comment.