Merge c7d3d224baf1d84172c9a6773adfe699f6803a30 into b2bc905e3cf8163cc8dc55f0c87941e2034a77b1

This commit is contained in:
LeeXN 2025-08-06 10:47:55 +08:00 committed by GitHub
commit e5ef430364
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -14,7 +14,7 @@ import {
export const useClusterStatus = () => { export const useClusterStatus = () => {
return useQuery({ return useQuery({
queryKey: ["status"], queryKey: ["status"],
queryFn: () => api.get<GetStatusResult>("/v1/status"), queryFn: () => api.get<GetStatusResult>("/v2/GetClusterStatus"),
}); });
}; };