Remove unnecessary optional chaining
This commit is contained in:
parent
6b316f8a8f
commit
5cc43bd8b5
|
@ -64,7 +64,7 @@
|
|||
if (autocomplete && term) {
|
||||
const lowerCaseTerm = term.toLowerCase()
|
||||
return options.filter(option => {
|
||||
return `${getLabel(option)}`?.toLowerCase().includes(lowerCaseTerm)
|
||||
return `${getLabel(option)}`.toLowerCase().includes(lowerCaseTerm)
|
||||
})
|
||||
}
|
||||
return options
|
||||
|
|
Loading…
Reference in New Issue