Fix issue of feature group information not visible on dashboard 50/13350/1
authorSungjin Lee <sodyn99@gmail.com>
Fri, 13 Sep 2024 05:21:15 +0000 (05:21 +0000)
committerSungjin Lee <sodyn99@gmail.com>
Fri, 13 Sep 2024 05:24:53 +0000 (05:24 +0000)
- Correction of 'feature-group.js'

ISSUE-ID: AIMLFW-156

Change-Id: Ie23e8112038e417cb99f49a75280641179e7a285
Signed-off-by: Sungjin Lee <sodyn99@gmail.com>
src/apis/feature-group.js

index dd4c692..9db74db 100644 (file)
@@ -5,7 +5,7 @@ export const featureGroupAPI = {
     return await instance.get('/featureGroup');
   },
   getFeatureGroup: async ({ params }) => {
-    return await instance.get(`/featureGroups/${params.featureGroupName}`);
+    return await instance.get(`/featureGroup/${params.featureGroupName}`);
   },
   createFeatureGroup: async ({ data }) => {
     return await instance.post('/featureGroup', { ...data });