From e36fb1e97b85a5224b34939dd9867f7017f8f5fa Mon Sep 17 00:00:00 2001 From: "2569718930@qq.com" <2569718930@qq.com> Date: Mon, 25 May 2026 00:54:02 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B8=85=E7=90=86=E6=9C=BA=E6=9E=84=E8=90=BD?= =?UTF-8?q?=E5=9C=B0=E9=A1=B5=E4=B8=AD=E6=9C=AA=E4=BD=BF=E7=94=A8=E7=9A=84?= =?UTF-8?q?=20useState=20=E7=8A=B6=E6=80=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 移除 billingCycle 状态及对应 import。 --- frontend/components/landing/InstitutionalLandingPage.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/frontend/components/landing/InstitutionalLandingPage.tsx b/frontend/components/landing/InstitutionalLandingPage.tsx index e3fb1c37..f0a17414 100644 --- a/frontend/components/landing/InstitutionalLandingPage.tsx +++ b/frontend/components/landing/InstitutionalLandingPage.tsx @@ -1,6 +1,5 @@ "use client"; -import { useState } from "react"; import Link from "next/link"; import { Activity, @@ -75,7 +74,6 @@ const PRO_FEATURES_ZH = [ function InstitutionalLandingScreen() { const { locale, toggleLocale } = useI18n(); const isEn = locale === "en-US"; - const [billingCycle, setBillingCycle] = useState<"annual" | "monthly">("monthly"); const marketRows = isEn ? RAW_MARKET_ROWS_EN : RAW_MARKET_ROWS_ZH; const coverage = isEn ? COVERAGE_EN : COVERAGE_ZH;