Skip to content

Commit

Permalink
fix: extra semicolon linting error
Browse files Browse the repository at this point in the history
  • Loading branch information
prestonb91 committed Feb 18, 2025
1 parent 0d08121 commit 97bb6d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/ModSearchBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,8 @@ const handleListItem = () => {
const item = filteredItems.value[selectedItemIndex.value]
if (selectedItems.value.includes(item)) {
const itemIndex = selectedItems.value.indexOf(item);
selectedItems.value.splice(itemIndex, 1);
const itemIndex = selectedItems.value.indexOf(item)
selectedItems.value.splice(itemIndex, 1)
return
}
Expand Down

0 comments on commit 97bb6d8

Please sign in to comment.