Use updated key from 'Status' enum

This commit is contained in:
RMidhunSuresh 2023-10-08 23:10:51 +05:30
parent fa8bd2e7cd
commit 380430c038
No known key found for this signature in database

View File

@ -56,7 +56,7 @@ class DecryptDehydratedDeviceViewModel extends ViewModel {
super(accountSetupViewModel.options); super(accountSetupViewModel.options);
this._accountSetupViewModel = accountSetupViewModel; this._accountSetupViewModel = accountSetupViewModel;
this._isBusy = false; this._isBusy = false;
this._status = Status.SetupKey; this._status = Status.SetupWithRecoveryKey;
this._error = undefined; this._error = undefined;
this._decryptedCallback = decryptedCallback; this._decryptedCallback = decryptedCallback;
} }
@ -92,15 +92,15 @@ class DecryptDehydratedDeviceViewModel extends ViewModel {
} }
showPhraseSetup() { showPhraseSetup() {
if (this._status === Status.SetupKey) { if (this._status === Status.SetupWithRecoveryKey) {
this._status = Status.SetupPhrase; this._status = Status.SetupWithPassphrase;
this.emitChange("status"); this.emitChange("status");
} }
} }
showKeySetup() { showKeySetup() {
if (this._status === Status.SetupPhrase) { if (this._status === Status.SetupWithPassphrase) {
this._status = Status.SetupKey; this._status = Status.SetupWithRecoveryKey;
this.emitChange("status"); this.emitChange("status");
} }
} }