Updated on 2026-08-14

This commit is contained in:
Tangem 2022-05-31 17:58:50 +04:00
parent fb7aa02b29
commit a2fb7e2ce1
2 changed files with 17 additions and 2 deletions

View file

@ -84,7 +84,13 @@ class AddTokensFragment : Fragment(R.layout.fragment_add_tokens),
}
val onLoadMore = {
store.dispatch(TokensAction.LoadCurrencies(scanResponse = store.state.globalState.scanResponse))
if (store.state.tokensState.needToLoadMore) {
store.dispatch(
TokensAction.LoadCurrencies(
scanResponse = store.state.globalState.scanResponse
)
)
}
}
cvCurrencies.setContent {