mirror of
https://github.com/bitwarden/android.git
synced 2024-12-24 18:08:26 +03:00
[SG-598] Removed space from copied totp code (#2046)
Removed space from copied totp code
This commit is contained in:
parent
525288d804
commit
ecd4da08ee
1 changed files with 1 additions and 1 deletions
|
@ -105,7 +105,7 @@ namespace Bit.App.Pages
|
|||
|
||||
public async Task CopyToClipboardAsync()
|
||||
{
|
||||
await _clipboardService.CopyTextAsync(TotpCodeFormatted);
|
||||
await _clipboardService.CopyTextAsync(TotpCodeFormatted?.Replace(" ", string.Empty));
|
||||
_platformUtilsService.ShowToast("info", null, string.Format(AppResources.ValueHasBeenCopied, AppResources.VerificationCodeTotp));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue