fix(@wallet): hide signing phrase accept

fixes #4517
This commit is contained in:
Anthony Laibe 2022-01-21 15:18:43 +01:00 committed by Sale Djenic
parent 69fc5bec5e
commit c505564522
2 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ Item {
SignPhraseModal {
id: signPhrasePopup
onRemindLaterClicked: hideSignPhraseModal = true
onAcceptClicked: { RootStore.hideSignPhraseModal(true); }
onAcceptClicked: { RootStore.setHideSignPhraseModal(true); }
}
SeedPhraseBackupWarning {

View File

@ -73,7 +73,7 @@ QtObject {
}
}
function hideSignPhraseModal(value) {
function setHideSignPhraseModal(value) {
localAccountSensitiveSettings.hideSignPhraseModal = value;
}