1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-28 06:03:40 +00:00

[SG-813] Not You? crashes app after vault logout timeout (#2184)

This commit is contained in:
André Bispo
2022-11-11 18:20:50 +00:00
parent 13eff49372
commit eeb0f61986
13 changed files with 125 additions and 60 deletions

View File

@@ -0,0 +1,14 @@
using Bit.App.Abstractions;
namespace Bit.App.Utilities.AccountManagement
{
public class HomeNavigationParams : INavigationParams
{
public HomeNavigationParams(bool shouldCheckRememberEmail)
{
ShouldCheckRememberEmail = shouldCheckRememberEmail;
}
public bool ShouldCheckRememberEmail { get; }
}
}