Skip to content

Commit

Permalink
fix: TS linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
romshark committed Nov 17, 2024
1 parent 2054c06 commit 01dc583
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions server/components/input-autocomplete.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
import { LitElement, html, css } from "lit";
import { property, state, query } from "lit/decorators.js";
import {
SlBlurEvent,
SlChangeEvent,
SlDropdown,
SlInput,
SlInputEvent,
SlSelectEvent,
} from "@shoelace-style/shoelace";

Expand Down Expand Up @@ -127,7 +125,7 @@ export default class InputAutocomplete extends LitElement {
});
}

#onInput(e: SlInputEvent) {
#onInput() {
// Reopen the dropdown if it's closed.
this.#loadSuggestions();
}
Expand Down

0 comments on commit 01dc583

Please sign in to comment.