We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fa8e32 commit 0c9cc4dCopy full SHA for 0c9cc4d
lib/stripe.ts
@@ -2,8 +2,8 @@ import { Stripe as _Stripe } from "stripe"
2
3
export const StripeWebhookSecret = process.env["STRIPE_WEBHOOK_SIGNING_SECRET"]!
4
5
-export const SripeSecretKey = process.env["STRIPE_SECRET_KEY"]!
+export const StripeSecretKey = process.env["STRIPE_SECRET_KEY"]!
6
7
-export const Stripe = new _Stripe(SripeSecretKey, {
+export const Stripe = new _Stripe(StripeSecretKey, {
8
apiVersion: "2022-11-15",
9
})
0 commit comments