mirror of
https://github.com/bitwarden/android.git
synced 2024-10-31 07:05:35 +03:00
PM-8051 Fix 2FA launch from iOS autofill, was missing passing appOptions to the App (#3244)
This commit is contained in:
parent
8566f5c00a
commit
c8d0db9f31
1 changed files with 1 additions and 1 deletions
|
@ -699,7 +699,7 @@ namespace Bit.iOS.Autofill
|
|||
{
|
||||
var appOptions = new AppOptions { IosExtension = true };
|
||||
var twoFactorPage = new TwoFactorPage(authingWithSso, appOptions);
|
||||
var app = new App.App();
|
||||
var app = new App.App(appOptions);
|
||||
ThemeManager.SetTheme(app.Resources);
|
||||
ThemeManager.ApplyResourcesTo(twoFactorPage);
|
||||
if (twoFactorPage.BindingContext is TwoFactorPageViewModel vm)
|
||||
|
|
Loading…
Reference in a new issue