diff --git a/Wallet/OpenWalletViewModel.cs b/Wallet/OpenWalletViewModel.cs index abe05a7..01eceda 100644 --- a/Wallet/OpenWalletViewModel.cs +++ b/Wallet/OpenWalletViewModel.cs @@ -35,8 +35,9 @@ public partial class OpenWalletViewModel : Observable { using (await new ActivityLock(this)) { - if (await validation.Validate(() => Password, [new ValidationRule(async () => - await Mediator.Handle>, bool>(Activate.As(new Wallet(Password))), "The password is incorrect, please try again.")])) + if (await Validation.Validate(() => Password, [new ValidationRule(async () => + await Mediator.Handle>, bool>(Activate.As(new Wallet(Password))), + "The password is incorrect, please try again.")])) { Publisher.Publish(Opened.As()); }