fix: use correct stripe management URL in staging environment (#5530)
This commit is contained in:
parent
67a1f1ee93
commit
387b97ed6d
1 changed files with 3 additions and 1 deletions
|
|
@ -107,7 +107,9 @@ class Environment {
|
|||
static String get stripeManagementUrl {
|
||||
return appConfigOverride?.stripeManagementUrl ??
|
||||
dotenv.env["STRIPE_MANAGEMENT_LINK"] ??
|
||||
'https://billing.stripe.com/p/login/dR6dSkf5p6rBc4EcMM';
|
||||
(isStagingEnvironment
|
||||
? 'https://billing.stripe.com/p/login/test_9AQaI8d3O9lmaXe5kk'
|
||||
: 'https://billing.stripe.com/p/login/dR6dSkf5p6rBc4EcMM');
|
||||
}
|
||||
|
||||
static String get supportUserId {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue