Skip to content

Commit 054c9ee

Browse files
committed
fix: correct API endpoint formatting in AppStatusModal service
1 parent 7c19ab7 commit 054c9ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Shared/Components/AppStatusModal/service.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ export const getAppDetails = async (
1616
})
1717

1818
const [appDetails, resourceTree] = await Promise.all([
19-
get(`${ROUTES.APP_DETAIL}/v2?${queryParams}`, {
19+
get(`${ROUTES.APP_DETAIL}/v2${queryParams}`, {
2020
abortControllerRef,
2121
}),
22-
get(`${ROUTES.APP_DETAIL}/resource-tree?${queryParams}`, {
22+
get(`${ROUTES.APP_DETAIL}/resource-tree${queryParams}`, {
2323
abortControllerRef,
2424
}),
2525
])

0 commit comments

Comments
 (0)