From b31ff3521dafc172420ab11a2fbe7b1cda5db9ea Mon Sep 17 00:00:00 2001 From: li Date: Wed, 8 Jan 2025 14:37:29 +1100 Subject: [PATCH] Fix route --- src/client/app.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/app.ts b/src/client/app.ts index 83bde18..97574df 100644 --- a/src/client/app.ts +++ b/src/client/app.ts @@ -37,7 +37,7 @@ export const AppKeystoreClient = (axiosInstance: AxiosInstance) => ({ properties: (): Promise => axiosInstance.get(`/apps/property`), /** Get app billing */ - billing: (appID: string): Promise => axiosInstance.get(`/apps/${appID}/property`), + billing: (appID: string): Promise => axiosInstance.get(`/safe/apps/${appID}/billing`), /** Get user's app share list */ favorites: (userID: string): Promise => axiosInstance.get(`/users/${userID}/apps/favorite`),