Updated on 2026-08-14

This commit is contained in:
Tangem 2025-02-04 15:02:39 +04:00
parent 171062fc2d
commit e0f3b72147
2 changed files with 2 additions and 2 deletions

View file

@ -133,7 +133,7 @@ internal class WalletsUpdateActionResolver @Inject constructor(
val isAnyNameChanged = (newWallets - prevWallets.toSet()).isNotEmpty()
return prevWalletsIds != newWalletsIds && isAnyNameChanged
return prevWalletsIds == newWalletsIds && isAnyNameChanged
}
private fun getRenameWalletsAction(state: WalletScreenState, wallets: List<UserWallet>): Action.RenameWallets {