From 1c0375ef05d29a06d983be20c3d4ed0b93aa6298 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andre=CC=81=20Bispo?= Date: Tue, 7 Jun 2022 18:59:17 +0100 Subject: [PATCH] removed unnecessary code on vm --- .../Pages/Vault/GroupingsPage/GroupingsPageViewModel.cs | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/App/Pages/Vault/GroupingsPage/GroupingsPageViewModel.cs b/src/App/Pages/Vault/GroupingsPage/GroupingsPageViewModel.cs index 32016bb5a..48b4b8288 100644 --- a/src/App/Pages/Vault/GroupingsPage/GroupingsPageViewModel.cs +++ b/src/App/Pages/Vault/GroupingsPage/GroupingsPageViewModel.cs @@ -83,7 +83,7 @@ namespace Bit.App.Pages VaultFilterCommand = new AsyncCommand(VaultFilterOptionsAsync, onException: ex => _logger.Exception(ex), allowsMultipleExecutions: false); - TOTPFilterCommand = new AsyncCommand(TOTPFilterAsync, + TOTPFilterCommand = new AsyncCommand(LoadDataAsync, onException: ex => _logger.Exception(ex), allowsMultipleExecutions: false); @@ -457,11 +457,6 @@ namespace Bit.App.Pages await LoadAsync(); } - public async Task TOTPFilterAsync() - { - await LoadAsync(); - } - public async Task SelectCipherAsync(CipherView cipher) { var page = new ViewPage(cipher.Id);