Skip to content

Commit

Permalink
feat(locksmith) - credit card enabled fix (#11900)
Browse files Browse the repository at this point in the history
credit card enabled fix
  • Loading branch information
kalidiagne committed May 16, 2023
1 parent 0186576 commit e8791f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion locksmith/src/operations/creditCardOperations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const getCreditCardEnabledStatus = async ({
hasEnoughToPayForGas &&
isAuthorizedForCreditCard &&
hasStripeConfig &&
totalPriceInCents > 50 // Let's check that the price is larger than 50cts
totalPriceInCents > 0.5 // Let's check that the price is larger than 50cts

return creditCardEnabled
}

0 comments on commit e8791f1

Please sign in to comment.