From 94b75f463b49d6288db3ff34e6ec5ff8f3876c23 Mon Sep 17 00:00:00 2001 From: wonfen Date: Tue, 18 Feb 2025 09:04:23 +0800 Subject: [PATCH] refactor: Remove unused routing select component from settings page --- src/pages/settings.tsx | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/src/pages/settings.tsx b/src/pages/settings.tsx index 49041cb0..8c7bc377 100644 --- a/src/pages/settings.tsx +++ b/src/pages/settings.tsx @@ -38,12 +38,6 @@ const SettingPage = () => { const mode = useThemeMode(); const isDark = mode === "light" ? false : true; - const routers = [ - { label: "Manual", path: "manual" }, - { label: "TG Channel", path: "telegram" }, - { label: "Github Repo", path: "github" }, - ]; - return ( { - ); };