Skip to content

Commit

Permalink
Merge pull request #7093 from MetaMask/allow-dismissing-privacy-mode-…
Browse files Browse the repository at this point in the history
…from-popup

Allow dismissing privacy mode from popup
  • Loading branch information
danfinlay authored Sep 3, 2019
2 parents daa20b4 + 3a4b3f5 commit 361a19a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ui/app/pages/home/home.component.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,11 @@ export default class Home extends PureComponent {
descriptionText={t('privacyModeDefault')}
acceptText={t('learnMore')}
onAccept={() => {
unsetMigratedPrivacyMode()
window.open('https://medium.com/metamask/42549d4870fa', '_blank', 'noopener')
}}
ignoreText={t('dismiss')}
onIgnore={() => {
unsetMigratedPrivacyMode()
}}
key="home-privacyModeDefault"
Expand Down

0 comments on commit 361a19a

Please sign in to comment.