feat: Show warning modal when Merge local data option is unchecked (#2953) [skip e2e]

* feat: Show warning modal when Merge local data option is unchecked

* keep checkbox available when using recovery sign in
This commit is contained in:
Antonella Sgarlatta
2025-11-04 09:51:09 -03:00
committed by GitHub
parent 11e36e1d4c
commit 531cc70667
6 changed files with 142 additions and 11 deletions

View File

@@ -103,7 +103,7 @@ export class SignInWithRecoveryCodes implements UseCaseInterface<void> {
payload: {
payload: {
ephemeral: false,
mergeLocal: false,
mergeLocal: dto.mergeLocal ?? true,
awaitSync: true,
checkIntegrity: false,
},

View File

@@ -3,4 +3,5 @@ export interface SignInWithRecoveryCodesDTO {
username: string
password: string
hvmToken?: string
mergeLocal?: boolean
}