Inline the credit card payments feature flag.

This commit is contained in:
Greyson Parrelli
2023-07-06 15:31:38 -04:00
committed by Clark Chen
parent 9d6337d5a8
commit ddc77884bd
2 changed files with 1 additions and 11 deletions

View File

@@ -42,7 +42,7 @@ object InAppDonations {
* Whether the user is in a region that supports credit cards, based off local phone number.
*/
fun isCreditCardAvailable(): Boolean {
return FeatureFlags.creditCardPayments() && !LocaleFeatureFlags.isCreditCardDisabled()
return !LocaleFeatureFlags.isCreditCardDisabled()
}
/**