Skip to content

Commit

Permalink
fix the linter
Browse files Browse the repository at this point in the history
  • Loading branch information
roncodes committed Nov 16, 2023
1 parent 3889cd5 commit cea9fd7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions addon/components/drawer.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import Component from '@glimmer/component';
import { tracked } from '@glimmer/tracking';
import { action } from '@ember/object';
import { later } from '@ember/runloop';
import { isBlank } from '@ember/utils';
import getWithDefault from '@fleetbase/ember-core/utils/get-with-default';

/**
Expand Down Expand Up @@ -110,7 +109,7 @@ export default class DrawerComponent extends Component {
}

/** Toggles the open state of the drawer. */
@action toggle(options = {}) {
@action toggle() {
this.isOpen = !this.isOpen;
}

Expand Down

0 comments on commit cea9fd7

Please sign in to comment.