Skip to content

Commit da00e62

Browse files
authored
Merge pull request #495 from code-payments/chore/move-tipcards-out-of-beta
chore: move tipcards out of beta
2 parents 8260e36 + 63cdb3e commit da00e62

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

api/src/main/java/com/getcode/network/repository/BetaFlagsRepository.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ data class BetaOptions(
3131
giveRequestsEnabled = false,
3232
buyModuleEnabled = true,
3333
chatUnsubEnabled = false,
34-
tipsEnabled = false,
34+
tipsEnabled = true,
3535
tipsChatEnabled = false,
3636
tipsChatCashEnabled = false,
3737
balanceCurrencySelectionEnabled = true,

app/src/main/java/com/getcode/view/main/account/BetaFlagsScreen.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,7 @@ private fun BetaFlagsViewModel.State.canMutate(flag: PrefsBool): Boolean {
147147
return when (flag) {
148148
PrefsBool.BUY_MODULE_ENABLED -> false
149149
PrefsBool.BALANCE_CURRENCY_SELECTION_ENABLED -> false
150+
PrefsBool.TIPS_ENABLED -> false
150151
PrefsBool.TIPS_CHAT_CASH_ENABLED -> tipsChatEnabled
151152
else -> true
152153
}

0 commit comments

Comments
 (0)