Skip to content

Commit

Permalink
style: fix eslint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelgerber committed Nov 7, 2023
1 parent d6aefe9 commit 97e96b6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ export class ActionButtons extends React.Component<{
dataTrackNote="chart_click_download"
showLabel={this.showButtonLabels}
icon={faDownload}
onClick={(e) => {
onClick={(e): void => {
this.manager.isDownloadModalOpen = true
e.stopPropagation()
}}
Expand All @@ -263,7 +263,7 @@ export class ActionButtons extends React.Component<{
dataTrackNote="chart_click_share"
showLabel={this.showButtonLabels}
icon={faShareNodes}
onClick={(e) => {
onClick={(e): void => {
this.toggleShareMenu()
e.stopPropagation()
}}
Expand Down

0 comments on commit 97e96b6

Please sign in to comment.