Skip to content

Commit

Permalink
fix null ref
Browse files Browse the repository at this point in the history
  • Loading branch information
tjanczuk committed Mar 13, 2024
1 parent 948e13b commit 06da252
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/stripe/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ function getStripeMode(): StripeMode {
return stripeMode;
}

let stripeConfiguration: { [mode: string]: StripeConfiguration };
const stripeConfiguration: { [mode: string]: StripeConfiguration } = {};
/**
* Determine the Stripe configuration based on the environment variables. If the _mode_ parameter is not specified,
* the mode is selected using the value of the `LETSGO_STRIPE_LIVE_MODE`
Expand Down

0 comments on commit 06da252

Please sign in to comment.