Explorar el Código

change to /api/v2/heartbeat

visuddhinanda hace 1 mes
padre
commit
211097df21
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      dashboard-v6/src/api/api-health.ts

+ 1 - 1
dashboard-v6/src/api/api-health.ts

@@ -6,5 +6,5 @@ export interface IHealth {
   createdAt: string;
 }
 export const apiServerHealth = (): Promise<IHealth> => {
-  return get<IHealth>("/api/v2/health-check");
+  return get<IHealth>("/api/v2/heartbeat");
 };