Updated on 2026-08-14

This commit is contained in:
Tangem 2020-11-17 10:38:41 +03:00
parent ee21a32dff
commit 8a5528d3f5
3 changed files with 2 additions and 6 deletions

View file

@ -7,10 +7,6 @@
"name": "usePayId",
"value": true
},
{
"name": "showWelcomeMessageAtStart",
"value": false
},
{
"name": "useTopUp",
"value": false

View file

@ -170,7 +170,7 @@ class TapWalletManager {
is Result.Success -> {
val config = store.state.globalState.configManager?.config?: return@withContext
val payId = result.data
if (!config.isPayIdEnabled) {
if (!config.payIdIsEnabled) {
store.dispatch(WalletAction.DisablePayId)
return@withContext
}

View file

@ -13,7 +13,7 @@ data class ConfigState(
val moonPayApiSecretKey: String = "sk_test_V8w4M19LbDjjYOt170s0tGuvXAgyEb1C",
val payIdIsEnabled: Boolean = true,
val usePayId: Boolean = true,
val useTopUp: Boolean = true,
val useTopUp: Boolean = false,
val isStart2Coin: Boolean = false
)