Skip to content

Commit 0f4fa25

Browse files
lint
1 parent 9a2e664 commit 0f4fa25

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/thirdweb/src/react/web/wallets/in-app/CountrySelector.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ export function CountrySelector({
3434
? supportedSmsCountries.filter((c) =>
3535
allowedCountryCodes.includes(c.countryIsoCode as SupportedSmsCountry),
3636
)
37-
: supportedSmsCountries ?? [
37+
: (supportedSmsCountries ?? [
3838
{
3939
countryIsoCode: "US",
4040
countryName: "United States",
4141
phoneNumberCode: 1,
4242
},
43-
];
43+
]);
4444

4545
return (
4646
<>

0 commit comments

Comments
 (0)