Make vault storages work

This commit is contained in:
TheXamlGuy
2024-04-28 16:04:05 +01:00
parent 20840cbf9c
commit df26cd2a75
15 changed files with 143 additions and 112 deletions
+1 -1
View File
@@ -19,6 +19,6 @@ public partial class CreateVaultViewModel(IServiceProvider provider,
public async Task<bool> Confirm()
{
return await Mediator.Handle<Create<Vault>, bool>(Create.As(new Vault(Name)));
return await Mediator.Handle<Create<Vault>, bool>(Create.As(new Vault(Name, "")));
}
}