Skip to content

Commit

Permalink
chore: Fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
TSenter committed Jun 25, 2024
1 parent 6675bac commit 2d5f0f8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion addon/components/nrg-popup.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default class NrgPopupComponent extends Component {
@tracked
isOpen;

hoverTask = restartableTask(async hovering => {
hoverTask = restartableTask(async (hovering) => {
const hoverTimeout = this.args.hoverTimeout ?? defaultHoverTimeout;
await timeout(hoverTimeout);
this.isOpen = hovering;
Expand Down
2 changes: 1 addition & 1 deletion addon/components/nrg-search.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export default class NrgSearchComponent extends NrgValidationComponent {
this.onBlur();
}

throttleQuery = restartableTask(async searchString => {
throttleQuery = restartableTask(async (searchString) => {
await timeout(this.searchTimeout);
this.items = await this.args.query(searchString);
this.activeItem = -1;
Expand Down

0 comments on commit 2d5f0f8

Please sign in to comment.