diff --git a/src/App/Resources/AppResources.Designer.cs b/src/App/Resources/AppResources.Designer.cs index de24011b7..7f08d4d1d 100644 --- a/src/App/Resources/AppResources.Designer.cs +++ b/src/App/Resources/AppResources.Designer.cs @@ -1952,7 +1952,7 @@ namespace Bit.App.Resources { } /// - /// Looks up a localized string similar to Two-step login makes your account more secure by requiring you to enter a security code from an authenticator app whenever you log in. Two-step login can be enabled on the bitwarden.com web vault. Do you want to visit the website now?. + /// Looks up a localized string similar to Two-step login makes your account more secure by requiring you to verify your login with another device such as a security key, authenticator app, SMS, phone call, or email. Two-step login can be enabled on the bitwarden.com web vault. Do you want to visit the website now?. /// public static string TwoStepLoginConfirmation { get { diff --git a/src/App/Resources/AppResources.resx b/src/App/Resources/AppResources.resx index 500701d50..d53c593cb 100644 --- a/src/App/Resources/AppResources.resx +++ b/src/App/Resources/AppResources.resx @@ -717,7 +717,7 @@ Two-step Login - Two-step login makes your account more secure by requiring you to enter a security code from an authenticator app whenever you log in. Two-step login can be enabled on the bitwarden.com web vault. Do you want to visit the website now? + Two-step login makes your account more secure by requiring you to verify your login with another device such as a security key, authenticator app, SMS, phone call, or email. Two-step login can be enabled on the bitwarden.com web vault. Do you want to visit the website now? Unlock with {0} diff --git a/src/iOS/Controls/HybridWebViewRenderer.cs b/src/iOS/Controls/HybridWebViewRenderer.cs index c2185f730..9ecfbf4c5 100644 --- a/src/iOS/Controls/HybridWebViewRenderer.cs +++ b/src/iOS/Controls/HybridWebViewRenderer.cs @@ -42,7 +42,7 @@ namespace Bit.iOS.Controls if(e.NewElement != null) { - Control.LoadRequest(new NSUrlRequest(new NSUrl(Element.Uri, false))); + Control.LoadRequest(new NSUrlRequest(new NSUrl(Element.Uri))); } }