1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-15 15:53:44 +00:00

[PS-2520] Restore copy confirmation toast on Android 13+ (#2388)

* Restore copy notification toast on Android 13+

* fixed space
This commit is contained in:
mp-bw
2023-02-21 10:49:24 -05:00
committed by GitHub
parent 3f72d35145
commit 6da1875ab6
4 changed files with 1 additions and 22 deletions

View File

@@ -134,11 +134,7 @@ namespace Bit.App.Services
public void ShowToastForCopiedValue(string valueNameCopied)
{
if (!_clipboardService.IsCopyNotificationHandledByPlatform())
{
ShowToast("info", null,
string.Format(AppResources.ValueHasBeenCopied, valueNameCopied));
}
ShowToast("info", null, string.Format(AppResources.ValueHasBeenCopied, valueNameCopied));
}
public bool SupportsFido2()