From 215b0186e4a5e694c20f6fd8947866901d05ac8e Mon Sep 17 00:00:00 2001 From: yu859 <15715093608@163.com> Date: Sun, 9 Aug 2026 17:12:01 +0800 Subject: [PATCH] fix(git): show the icon matching the active theme in the toggle --- plugins/git/src/client/components/dashboard.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/git/src/client/components/dashboard.tsx b/plugins/git/src/client/components/dashboard.tsx index 9c09ca32..47f672ce 100644 --- a/plugins/git/src/client/components/dashboard.tsx +++ b/plugins/git/src/client/components/dashboard.tsx @@ -106,10 +106,10 @@ function ConnectionBadge() { } function ThemeToggle() { - const { theme, toggle } = useTheme() + const { toggle } = useTheme() return ( - + ) }