Skip to content

Commit

Permalink
fix: linter changes
Browse files Browse the repository at this point in the history
  • Loading branch information
LukassF committed Feb 15, 2024
1 parent 67deb6b commit 4977ecc
Showing 1 changed file with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,9 @@ export class NightlyWalletSelectorPage extends LitElement {
const searchText = searchInput.value.toLowerCase()
this.searchText = searchText

this.filteredItems = this.selectorItems
.filter((item) => {
return item.name.toLowerCase().includes(searchText)
})
.sort(walletsSort)
this.filteredItems = this.selectorItems.filter((item) => {
return item.name.toLowerCase().includes(searchText)
}).sort(walletsSort)
}

renderSelectorItems() {
Expand Down

0 comments on commit 4977ecc

Please sign in to comment.