BIT-189 Check data breaches toggle should default to on (#159)

This commit is contained in:
Andrew Haisting 2023-10-25 09:36:07 -05:00 committed by Álison Fernandes
parent 8295a47e3d
commit 207bed42ed
2 changed files with 2 additions and 2 deletions

View file

@ -50,7 +50,7 @@ class CreateAccountViewModel @Inject constructor(
confirmPasswordInput = "",
passwordHintInput = "",
isAcceptPoliciesToggled = false,
isCheckDataBreachesToggled = false,
isCheckDataBreachesToggled = true,
dialog = null,
),
) {

View file

@ -526,7 +526,7 @@ class CreateAccountViewModelTest : BaseViewModelTest() {
emailInput = "",
confirmPasswordInput = "",
passwordHintInput = "",
isCheckDataBreachesToggled = false,
isCheckDataBreachesToggled = true,
isAcceptPoliciesToggled = false,
dialog = null,
)