From 745a8d38604026f8f06b489ecdb6d1af1e46051b Mon Sep 17 00:00:00 2001 From: Germain Date: Tue, 20 Jul 2021 17:18:33 +0100 Subject: [PATCH] Explain isSmall proper for CountryDropdown Co-authored-by: Michael Telatynski <7t3chguy@gmail.com> --- src/components/views/auth/CountryDropdown.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/views/auth/CountryDropdown.tsx b/src/components/views/auth/CountryDropdown.tsx index bc97956653..eb5b27be9d 100644 --- a/src/components/views/auth/CountryDropdown.tsx +++ b/src/components/views/auth/CountryDropdown.tsx @@ -42,7 +42,7 @@ function countryMatchesSearchQuery(query: string, country: PhoneNumberCountryDef interface IProps { value?: string; onOptionChange: (country: PhoneNumberCountryDefinition) => void; - isSmall: boolean; + isSmall: boolean; // if isSmall, show +44 in the selected value showPrefix: boolean; className?: string; disabled?: boolean;