chore: delete debug output

This commit is contained in:
MystiPanda 2024-03-10 11:47:55 +08:00
parent 8387964bae
commit 25f20d6a85
3 changed files with 0 additions and 3 deletions

View File

@ -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";

View File

@ -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();

View File

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