1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-11 05:43:30 +00:00

PS-70 removed update to premium uri launch

This commit is contained in:
André Bispo
2022-06-24 19:50:21 +01:00
parent 6f61f1f4d8
commit 6b33266721
3 changed files with 1 additions and 15 deletions

View File

@@ -222,11 +222,7 @@
StyleClass="box-footer-label"
IsVisible="{Binding CanAccessPremium , Converter={StaticResource inverseBool}}"
Margin="0,5"
HorizontalOptions="StartAndExpand">
<Label.GestureRecognizers>
<TapGestureRecognizer Tapped="UpgradeToPremiumTotp_Tapped" />
</Label.GestureRecognizers>
</Label>
HorizontalOptions="StartAndExpand"/>
<BoxView StyleClass="box-row-separator" IsVisible="{Binding ShowTotp}" />
</StackLayout>
<StackLayout IsVisible="{Binding IsCard}" Spacing="0" Padding="0">

View File

@@ -323,10 +323,5 @@ namespace Bit.App.Pages
ToolbarItems.Insert(1, _editItem);
}
}
private void UpgradeToPremiumTotp_Tapped(object sender, System.EventArgs e)
{
_vm.LaunchGetPremiumMembershipURI();
}
}
}

View File

@@ -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