diff --git a/src/components/proxy/proxy-group.tsx b/src/components/proxy/proxy-group.tsx
index e21a6eefb0ab9e998c88f8a72f02dbe5c538acd6..61debdfee48ce501e987198bab5d546dfb561403 100644
--- a/src/components/proxy/proxy-group.tsx
+++ b/src/components/proxy/proxy-group.tsx
@@ -111,9 +111,18 @@ const ProxyGroup = ({ group }: Props) => {
   // auto scroll to current index
   useEffect(() => {
     if (headState.open) {
-      setTimeout(() => onLocation(false), 5);
+      setTimeout(() => onLocation(false), 10);
     }
-  }, [headState.open]);
+  }, [headState.open, sortedProxies]);
+
+  // auto scroll when sorted changed
+  const timerRef = useRef<any>();
+  useEffect(() => {
+    if (headState.open) {
+      clearTimeout(timerRef.current);
+      timerRef.current = setTimeout(() => onLocation(false), 500);
+    }
+  }, [headState.open, sortedProxies]);
 
   return (
     <>