face id strings
This commit is contained in:
parent
defb67c523
commit
961e23f0b8
|
@ -88,7 +88,8 @@ namespace Bit.App.Pages
|
|||
|
||||
if(FingerprintLock)
|
||||
{
|
||||
FingerprintButtonText = AppResources.UseFingerprintToUnlock; // TODO: FaceID text
|
||||
FingerprintButtonText = _deviceActionService.SupportsFaceId() ? AppResources.UseFaceIDToUnlock :
|
||||
AppResources.UseFingerprintToUnlock;
|
||||
var tasks = Task.Run(async () =>
|
||||
{
|
||||
await Task.Delay(500);
|
||||
|
|
|
@ -207,8 +207,8 @@ namespace Bit.App.Services
|
|||
{
|
||||
if(text == null)
|
||||
{
|
||||
text = AppResources.FingerprintDirection;
|
||||
// TODO: face id direction
|
||||
text = _deviceActionService.SupportsFaceId() ? AppResources.FaceIDDirection :
|
||||
AppResources.FingerprintDirection;
|
||||
}
|
||||
var fingerprintRequest = new AuthenticationRequestConfiguration(text)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue