1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-05 23:53:33 +00:00

[PM-2713] fix signature of GetUserKeyPin

This commit is contained in:
Jacob Fink
2023-07-18 10:16:48 -04:00
parent 515decb4c9
commit 1e30524985

View File

@@ -396,7 +396,7 @@ namespace Bit.Core.Services
}
// TODO(Jake): Does this need to be secure storage?
public async Task<string> GetUserKeyPin(string value, string userId = null)
public async Task<string> GetUserKeyPin(string userId = null)
{
return await _storageMediatorService.GetAsync<string>(Constants.UserKeyPinKey(userId), false);
}