Skip to content

Commit

Permalink
settings: fix revealseed
Browse files Browse the repository at this point in the history
  • Loading branch information
rithvikvibhu committed Jul 6, 2022
1 parent fffa250 commit 758fff2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/pages/Settings/RevealSeedModal.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,11 @@ class RevealSeedModal extends Component {
}

renderMnemonic() {
const {phraseMatchesKey} = this.props;
const {phraseMismatch} = this.props;
const {mnemonic} = this.state;

// View seed phrase
if (phraseMatchesKey) {
if (!phraseMismatch) {
return (
<div className="reveal-seed-modal__seed-phrase">
{mnemonic}
Expand Down

0 comments on commit 758fff2

Please sign in to comment.