- Enhance layout and responsiveness of camera components

- update system health hook for periodic refetching
This commit is contained in:
2025-12-03 13:39:18 +00:00
parent 10590e5658
commit 59bcb3c45b
7 changed files with 9 additions and 31 deletions

View File

@@ -11,6 +11,7 @@ export const useGetSystemHealth = () => {
const query = useQuery({
queryKey: ["fetchSystemData"],
queryFn: fetchData,
refetchInterval: 300000,
});
return { query };
};