Updated on 2026-08-14

This commit is contained in:
Tangem 2023-08-25 14:52:08 +03:00
parent 159c364b3c
commit 819c610c6f
3 changed files with 19 additions and 16 deletions

View file

@ -56,15 +56,12 @@ internal class DefaultTokensListRouter(
headerId = R.string.common_warning,
messageId = R.string.alert_manage_tokens_unsupported_message,
)
Blockchain.Chia, Blockchain.ChiaTestnet -> AppDialog.SimpleOkDialogRes(
else -> AppDialog.SimpleOkDialogRes(
headerId = R.string.common_warning,
messageId = R.string.alert_manage_tokens_unsupported_curve_message,
args = listOf(blockchain.fullName),
)
else -> null // there's no alerts for other blockchains yer
}
if (alert != null) {
store.dispatchDialogShow(alert)
}
store.dispatchDialogShow(alert)
}
}