소스 검색

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;
   createdAt: string;
 }
 }
 export const apiServerHealth = (): Promise<IHealth> => {
 export const apiServerHealth = (): Promise<IHealth> => {
-  return get<IHealth>("/api/v2/health-check");
+  return get<IHealth>("/api/v2/heartbeat");
 };
 };