From 35df595668221ce0e148ce00e4446fc33bb1171a Mon Sep 17 00:00:00 2001 From: xiami762 <> Date: Fri, 22 May 2026 18:12:06 +0800 Subject: [PATCH] fix(webui): remove stale eslint-disable in DeviceIntegration fetchData The fetchData useCallback no longer needs react-hooks/exhaustive-deps suppression. Co-authored-by: Cursor --- webui/src/pages/DeviceIntegration/index.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/webui/src/pages/DeviceIntegration/index.tsx b/webui/src/pages/DeviceIntegration/index.tsx index 4c8ef30a9..82820f57a 100644 --- a/webui/src/pages/DeviceIntegration/index.tsx +++ b/webui/src/pages/DeviceIntegration/index.tsx @@ -920,7 +920,6 @@ export default function DeviceIntegrationPage() { setLoading(false); setRefreshing(false); } - // eslint-disable-next-line react-hooks/exhaustive-deps }, []); useEffect(() => { void fetchData(); }, [fetchData]);