Skip to content

Commit

Permalink
chore(ui): remove underscore, eslint-ignore line
Browse files Browse the repository at this point in the history
  • Loading branch information
franzheidl committed Nov 6, 2024
1 parent df43981 commit 521b843
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ export interface MenuItemProps {
/** Pass an href to the menu item. Will result in the menu item being rendered as an `<a>`. */
href?: string
/** Pass an onClick handler to the menu item. Will result in the menu item being rendered as a `<button>`. */
onClick?: (_event: MouseEvent<HTMLButtonElement>) => void
// eslint-disable-next-line no-unused-vars
onClick?: (event: MouseEvent<HTMLButtonElement>) => void
}

interface MenuContextType {
Expand Down

0 comments on commit 521b843

Please sign in to comment.