From 5092694951690ff2b23ccd89418b47d420547630 Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Tue, 28 Nov 2023 20:20:24 -0500 Subject: [PATCH] fix: shares.info request from client incorrectly capitalized --- app/stores/SharesStore.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/stores/SharesStore.ts b/app/stores/SharesStore.ts index da63a95f2..3f0f60de5 100644 --- a/app/stores/SharesStore.ts +++ b/app/stores/SharesStore.ts @@ -60,7 +60,7 @@ export default class SharesStore extends Store { this.isFetching = true; try { - const res = await client.post(`/${this.modelName}s.info`, { + const res = await client.post(`/${this.apiEndpoint}.info`, { documentId, });