فهرست منبع

chore: delete debug output

MystiPanda 1 سال پیش
والد
کامیت
25f20d6a85
3فایلهای تغییر یافته به همراه0 افزوده شده و 3 حذف شده
  1. 0 1
      src/components/proxy/proxy-render.tsx
  2. 0 1
      src/pages/_layout.tsx
  3. 0 1
      src/pages/settings.tsx

+ 0 - 1
src/components/proxy/proxy-render.tsx

@@ -36,7 +36,6 @@ export const ProxyRender = (props: RenderProps) => {
   const { verge } = useVerge();
   const enable_group_icon = verge?.enable_group_icon ?? true;
   const [mode] = useRecoilState(atomThemeMode);
-  console.log(mode);
   const isDark = mode === "light" ? false : true;
   const itembackgroundcolor = isDark ? "#282A36" : "#ffffff";
 

+ 0 - 1
src/pages/_layout.tsx

@@ -35,7 +35,6 @@ const OS = getSystem();
 
 const Layout = () => {
   const [mode] = useRecoilState(atomThemeMode);
-  console.log(mode);
   const isDark = mode === "light" ? false : true;
   const { t } = useTranslation();
   const { theme } = useCustomTheme();

+ 0 - 1
src/pages/settings.tsx

@@ -23,7 +23,6 @@ const SettingPage = () => {
   });
 
   const [mode] = useRecoilState(atomThemeMode);
-  console.log(mode);
   const isDark = mode === "light" ? false : true;
   const { theme } = useCustomTheme();