diff --git a/tools/upend_js/api.ts b/tools/upend_js/api.ts index 9589e18..434f98c 100644 --- a/tools/upend_js/api.ts +++ b/tools/upend_js/api.ts @@ -179,7 +179,7 @@ export class UpEndApi { } public async fetchStoreInfo(): Promise<{ [key: string]: StoreInfo }> { - const response = await fetch(`${this.apiUrl}/store`); + const response = await fetch(`${this.apiUrl}/stats/store`); const result = await response.json(); dbg("Store info: %O"); return await result;