CountryCodeDropdown: use button element

This commit is contained in:
Alex Gleason 2022-07-13 12:16:54 -05:00
parent a8c709b41c
commit 85cf99f618
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7

View file

@ -26,7 +26,7 @@ const CountryCodeDropdown: React.FC<ICountryCodeDropdown> = ({ countryCode, onCh
return (
<DropdownMenu items={menu}>
<>{countryCode}</>
<button className='p-4'>{countryCode}</button>
</DropdownMenu>
);
};