Replace SystemInfoDialog with BackendInfoDialog and update related references

This commit is contained in:
2025-09-23 21:44:04 +02:00
parent 71a48aa3b6
commit edf0575925
4 changed files with 283 additions and 212 deletions

View File

@@ -156,5 +156,5 @@ export const instancesApi = {
},
// GET /instances/{name}/proxy/health
getHealth: (name: string) => apiCall<any>(`/instances/${name}/proxy/health`),
getHealth: (name: string) => apiCall<Record<string, unknown>>(`/instances/${name}/proxy/health`),
};