From e4841bb322e2a8e9ccb8e3e7b791eda6a2907b25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Bispo?= Date: Thu, 2 May 2024 17:41:32 +0100 Subject: [PATCH] [PM-7869] Add AppOptions to decryption options navigation (#3210) --- src/Core/Pages/Accounts/TwoFactorPage.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/Pages/Accounts/TwoFactorPage.xaml.cs b/src/Core/Pages/Accounts/TwoFactorPage.xaml.cs index 37828567b..a3dfae976 100644 --- a/src/Core/Pages/Accounts/TwoFactorPage.xaml.cs +++ b/src/Core/Pages/Accounts/TwoFactorPage.xaml.cs @@ -191,7 +191,7 @@ namespace Bit.App.Pages private async Task StartDeviceApprovalOptionsAsync() { - var page = new LoginApproveDevicePage(); + var page = new LoginApproveDevicePage(_appOptions); await Navigation.PushModalAsync(new NavigationPage(page)); }