Skip to content

Commit

Permalink
fix code smell
Browse files Browse the repository at this point in the history
  • Loading branch information
leagrdv committed Dec 13, 2024
1 parent fb3f91d commit 9a37637
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export class PostMegadropdown {
*/
@Method()
async toggle(target: HTMLElement) {
this.isVisible ? await this.hide() : await this.show(target);
this.isVisible ? this.hide() : await this.show(target);
}

/**
Expand Down

0 comments on commit 9a37637

Please sign in to comment.