From f98388ce697f1d65732e35d393a9366e891a8bad Mon Sep 17 00:00:00 2001 From: "2569718930@qq.com" <2569718930@qq.com> Date: Fri, 17 Apr 2026 20:01:18 +0800 Subject: [PATCH] Allow trial users to open checkout --- frontend/components/account/AccountCenter.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/components/account/AccountCenter.tsx b/frontend/components/account/AccountCenter.tsx index e26b6540..fd2a0dfd 100644 --- a/frontend/components/account/AccountCenter.tsx +++ b/frontend/components/account/AccountCenter.tsx @@ -1507,7 +1507,7 @@ export function AccountCenter() { const paymentFeatureReady = paymentReadyForRecovery; const canOpenCheckoutOverlay = Boolean( paymentFeatureReady && - (!isSubscribed || showExpiringSoon || showExpiredReminder), + (!isSubscribed || isTrialPlan || showExpiringSoon || showExpiredReminder), ); const subscriptionStatusTitle = showExpiredReminder ? isTrialPlan