Преглед изворни кода

change to /api/v2/heartbeat

visuddhinanda пре 1 месец
родитељ
комит
211097df21
1 измењених фајлова са 1 додато и 1 уклоњено
  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");
 };