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 = "", confirmPasswordInput = "",
passwordHintInput = "", passwordHintInput = "",
isAcceptPoliciesToggled = false, isAcceptPoliciesToggled = false,
isCheckDataBreachesToggled = false, isCheckDataBreachesToggled = true,
dialog = null, dialog = null,
), ),
) { ) {

View file

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