清理机构落地页中未使用的 useState 状态

移除 billingCycle 状态及对应 import。
This commit is contained in:
2569718930@qq.com
2026-05-25 00:54:02 +08:00
parent c9cff88452
commit e36fb1e97b
@@ -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;