diff --git a/client/src/components/BottomNav.tsx b/client/src/components/BottomNav.tsx index a2c8c93..32de789 100644 --- a/client/src/components/BottomNav.tsx +++ b/client/src/components/BottomNav.tsx @@ -2,7 +2,7 @@ BOTTOM NAV — Luxsin X9 Controller (Mobile) Design: iOS/Android App-style bottom tab bar 5 tabs — labels from locales/bottomNav, language = deviceState.language (同系统页) - - 社区:仅桌面宽屏(lg ≥1024px)显示,手机等小屏隐藏 + - 社区:移动端进入 /community 引导复制链接;桌面(lg+)点击仍 window.open 论坛 - Active tab: cyan icon + top indicator bar - Inactive: muted icon + label ============================================================ */ @@ -54,12 +54,6 @@ export default function BottomNav() { return (pack.bottomNav ?? localeZh.bottomNav) as BottomNavLocale; }, [deviceState?.language]); - /** 社区入口仅在桌面级视口显示(与 useIsLgUp / Tailwind lg 一致) */ - const visibleNavItems = useMemo( - () => NAV_ITEMS.filter((item) => item.path !== "/community" || isLgUp), - [isLgUp], - ); - return (