@
修复 trial 用户无法打开付款入口 canOpenCheckoutOverlay 缺少 isTrialPlan 条件,导致试用用户无法升级付费 @
This commit is contained in:
@@ -1567,7 +1567,7 @@ export function AccountCenter() {
|
||||
const paymentFeatureReady = paymentReadyForRecovery;
|
||||
const canOpenCheckoutOverlay = Boolean(
|
||||
paymentFeatureReady &&
|
||||
(!isSubscribed || showExpiringSoon || showExpiredReminder),
|
||||
(!isSubscribed || isTrialPlan || showExpiringSoon || showExpiredReminder),
|
||||
);
|
||||
const subscriptionStatusTitle = showExpiredReminder
|
||||
? copy.proExpiredTitle
|
||||
|
||||
Reference in New Issue
Block a user