From 840d8b2e49fad788807b9b151a02ae48eb44ed28 Mon Sep 17 00:00:00 2001 From: Vikrant Gupta Date: Tue, 16 Jul 2024 14:30:03 +0530 Subject: [PATCH] fix: 404 not found when intercepting the ingestion key calls (#5490) --- frontend/src/api/apiV1.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/api/apiV1.ts b/frontend/src/api/apiV1.ts index 05b4e62e78..613ed27a17 100644 --- a/frontend/src/api/apiV1.ts +++ b/frontend/src/api/apiV1.ts @@ -3,7 +3,7 @@ const apiV1 = '/api/v1/'; export const apiV2 = '/api/v2/'; export const apiV3 = '/api/v3/'; export const apiV4 = '/api/v4/'; -export const gatewayApiV1 = '/api/gateway/v1'; -export const apiAlertManager = '/api/alertmanager'; +export const gatewayApiV1 = '/api/gateway/v1/'; +export const apiAlertManager = '/api/alertmanager/'; export default apiV1;