Skip to content

Commit

Permalink
Fix desktop app reminder
Browse files Browse the repository at this point in the history
  • Loading branch information
1aerostorm committed Jun 30, 2023
1 parent 4f38932 commit 81be87c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/components/elements/app/AppReminder.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ class AppReminder extends React.Component {
}
return <span className='AppReminder callout primary' onClick={this.showModal}>
<CloseButton
onClick={() => {
onClick={(e) => {
e.stopPropagation()
this.hideMe()
}}
/>
Expand Down

0 comments on commit 81be87c

Please sign in to comment.