We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a2e664 commit 0f4fa25Copy full SHA for 0f4fa25
packages/thirdweb/src/react/web/wallets/in-app/CountrySelector.tsx
@@ -34,13 +34,13 @@ export function CountrySelector({
34
? supportedSmsCountries.filter((c) =>
35
allowedCountryCodes.includes(c.countryIsoCode as SupportedSmsCountry),
36
)
37
- : supportedSmsCountries ?? [
+ : (supportedSmsCountries ?? [
38
{
39
countryIsoCode: "US",
40
countryName: "United States",
41
phoneNumberCode: 1,
42
},
43
- ];
+ ]);
44
45
return (
46
<>
0 commit comments