diff --git a/src/components/proxy/proxy-group.tsx b/src/components/proxy/proxy-group.tsx
index 61debdfee48ce501e987198bab5d546dfb561403..95d8adb2ebab1e44a51b32d190e9a74a3b8db501 100644
--- a/src/components/proxy/proxy-group.tsx
+++ b/src/components/proxy/proxy-group.tsx
@@ -115,14 +115,14 @@ const ProxyGroup = ({ group }: Props) => {
     }
   }, [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]);
+  // // 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 (
     <>