From fa433ef8d18ffbe719a36b7c54788068e456a1af Mon Sep 17 00:00:00 2001 From: Tangem Date: Mon, 6 Jul 2026 14:41:04 +0100 Subject: [PATCH] Updated on 2026-08-14 --- .../features/addressbook/editcontact/model/EditContactModel.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/features/address-book/impl/src/main/kotlin/com/tangem/features/addressbook/editcontact/model/EditContactModel.kt b/features/address-book/impl/src/main/kotlin/com/tangem/features/addressbook/editcontact/model/EditContactModel.kt index bbc1caed26..b6ff6cdd5c 100644 --- a/features/address-book/impl/src/main/kotlin/com/tangem/features/addressbook/editcontact/model/EditContactModel.kt +++ b/features/address-book/impl/src/main/kotlin/com/tangem/features/addressbook/editcontact/model/EditContactModel.kt @@ -232,6 +232,7 @@ internal class EditContactModel @Inject constructor( selectedWallet.mapNotNull { it?.walletId }.distinctUntilChanged(), ) { name, walletId -> name to walletId } .mapLatest { (name, walletId) -> validateName(name, walletId) } + .flowOn(dispatchers.default) .onEach { error -> stateController.update(UpdateNameErrorTransformer(error)) } .launchIn(modelScope) }