Skip to content

Commit ec09ec0

Browse files
committed
4.0.0-rc.5
1 parent 404e176 commit ec09ec0

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

example/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-autocomplete-dropdown-playground",
3-
"version": "4.0.0-rc.4",
3+
"version": "4.0.0-rc.5",
44
"private": true,
55
"license": "MIT",
66
"author": "Alexandr Kozhevnikov <[email protected]>",

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-autocomplete-dropdown",
3-
"version": "4.0.0-rc.4",
3+
"version": "4.0.0-rc.5",
44
"description": "Dropdown Item picker with search and autocomplete (typeahead) functionality for react native",
55
"keywords": [
66
"react-native",

src/index.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,6 @@ export const AutocompleteDropdown = memo<
299299
}
300300

301301
const newSet = initialDataSet.filter((item: AutocompleteDropdownItem) => {
302-
const titleLowercase = (item.title || '').toLowerCase()
303302
const titleStr = item.title || ''
304303
const title = caseSensitive ? titleStr : titleStr.toLowerCase()
305304
const findWhere = ignoreAccents ? diacriticless(title) : title

0 commit comments

Comments
 (0)