Updated on 2026-08-14
This commit is contained in:
parent
ee21a32dff
commit
8a5528d3f5
3 changed files with 2 additions and 6 deletions
|
|
@ -7,10 +7,6 @@
|
|||
"name": "usePayId",
|
||||
"value": true
|
||||
},
|
||||
{
|
||||
"name": "showWelcomeMessageAtStart",
|
||||
"value": false
|
||||
},
|
||||
{
|
||||
"name": "useTopUp",
|
||||
"value": false
|
||||
|
|
|
|||
|
|
@ -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
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue