From 6b332667217ead91e91068ce00c2bd4854ec7c1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andre=CC=81=20Bispo?= Date: Fri, 24 Jun 2022 19:50:21 +0100 Subject: [PATCH] PS-70 removed update to premium uri launch --- src/App/Pages/Vault/ViewPage.xaml | 6 +----- src/App/Pages/Vault/ViewPage.xaml.cs | 5 ----- src/App/Pages/Vault/ViewPageViewModel.cs | 5 ----- 3 files changed, 1 insertion(+), 15 deletions(-) diff --git a/src/App/Pages/Vault/ViewPage.xaml b/src/App/Pages/Vault/ViewPage.xaml index 661c0b63d..2aeca48fa 100644 --- a/src/App/Pages/Vault/ViewPage.xaml +++ b/src/App/Pages/Vault/ViewPage.xaml @@ -222,11 +222,7 @@ StyleClass="box-footer-label" IsVisible="{Binding CanAccessPremium , Converter={StaticResource inverseBool}}" Margin="0,5" - HorizontalOptions="StartAndExpand"> - - - - + HorizontalOptions="StartAndExpand"/> diff --git a/src/App/Pages/Vault/ViewPage.xaml.cs b/src/App/Pages/Vault/ViewPage.xaml.cs index c35b36598..eb03551f1 100644 --- a/src/App/Pages/Vault/ViewPage.xaml.cs +++ b/src/App/Pages/Vault/ViewPage.xaml.cs @@ -323,10 +323,5 @@ namespace Bit.App.Pages ToolbarItems.Insert(1, _editItem); } } - - private void UpgradeToPremiumTotp_Tapped(object sender, System.EventArgs e) - { - _vm.LaunchGetPremiumMembershipURI(); - } } } diff --git a/src/App/Pages/Vault/ViewPageViewModel.cs b/src/App/Pages/Vault/ViewPageViewModel.cs index d471bb936..f3b80eb4c 100644 --- a/src/App/Pages/Vault/ViewPageViewModel.cs +++ b/src/App/Pages/Vault/ViewPageViewModel.cs @@ -732,11 +732,6 @@ namespace Bit.App.Pages return _passwordReprompted = await _passwordRepromptService.ShowPasswordPromptAsync(); } - - public void LaunchGetPremiumMembershipURI() - { - _platformUtilsService.LaunchUri("https://bitwarden.com/pricing/"); - } } public class ViewPageFieldViewModel : ExtendedViewModel