From c22ca9cdb3520ec7883e22dfdb33ee18059b3592 Mon Sep 17 00:00:00 2001 From: t0ng7u Date: Sun, 1 Feb 2026 00:43:09 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20chore:=20Remove=20duplicate=20su?= =?UTF-8?q?bscription=20usage=20percentage=20display?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Keep the usage percentage shown only in the total quota line to avoid redundant “已用 0%” text while preserving remaining days in the summary. --- web/src/components/topup/SubscriptionPlansCard.jsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/web/src/components/topup/SubscriptionPlansCard.jsx b/web/src/components/topup/SubscriptionPlansCard.jsx index adead2379..248b3e696 100644 --- a/web/src/components/topup/SubscriptionPlansCard.jsx +++ b/web/src/components/topup/SubscriptionPlansCard.jsx @@ -406,8 +406,7 @@ const SubscriptionPlansCard = ({ {isActive && ( - {t('剩余')} {remainDays} {t('天')} · {t('已用')}{' '} - {usagePercent}% + {t('剩余')} {remainDays} {t('天')} )}