1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-06-25 10:26:02 +02:00
This commit is contained in:
Kyle Spearrin 2019-05-15 12:55:52 -04:00
parent d6f46cf5c5
commit 2c302985f8

View File

@ -48,7 +48,7 @@ namespace Bit.App.Pages
{
var fingerprint = await _cryptoService.GetFingerprintAsync(await _userService.GetUserIdAsync());
var phrase = string.Join("-", fingerprint);
var text = string.Format("{0}\n\n{1}", AppResources.YourAccountsFingerprint, phrase);
var text = string.Format("{0}:\n\n{1}", AppResources.YourAccountsFingerprint, phrase);
var learnMore = await _platformUtilsService.ShowDialogAsync(text, AppResources.FingerprintPhrase,
AppResources.LearnMore, AppResources.Close);
if(learnMore)