Skip to content

Commit

Permalink
Fix route
Browse files Browse the repository at this point in the history
  • Loading branch information
jadeydi committed Jan 8, 2025
1 parent 7d3c78f commit b31ff35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export const AppKeystoreClient = (axiosInstance: AxiosInstance) => ({
properties: (): Promise<AppPropertyResponse> => axiosInstance.get<unknown, AppPropertyResponse>(`/apps/property`),

/** Get app billing */
billing: (appID: string): Promise<AppBillingResponse> => axiosInstance.get<unknown, AppBillingResponse>(`/apps/${appID}/property`),
billing: (appID: string): Promise<AppBillingResponse> => axiosInstance.get<unknown, AppBillingResponse>(`/safe/apps/${appID}/billing`),

/** Get user's app share list */
favorites: (userID: string): Promise<AppResponse[]> => axiosInstance.get<unknown, AppResponse[]>(`/users/${userID}/apps/favorite`),
Expand Down

0 comments on commit b31ff35

Please sign in to comment.