diff options
| author | Dhravya Shah <[email protected]> | 2025-09-18 12:16:45 -0700 |
|---|---|---|
| committer | Dhravya Shah <[email protected]> | 2025-09-18 12:16:45 -0700 |
| commit | 4942525ee95cb7e0eb455944ce5f1e2c1cc6e9dd (patch) | |
| tree | 7b5ca8f2a86e2a7f8459d9603e99fc842f2f701d /apps/web | |
| parent | Merge branch 'main' of https://github.com/supermemoryai/supermemory (diff) | |
| download | supermemory-4942525ee95cb7e0eb455944ce5f1e2c1cc6e9dd.tar.xz supermemory-4942525ee95cb7e0eb455944ce5f1e2c1cc6e9dd.zip | |
fix
Diffstat (limited to 'apps/web')
| -rw-r--r-- | apps/web/app/page.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/web/app/page.tsx b/apps/web/app/page.tsx index f66327e1..d2dd6b4a 100644 --- a/apps/web/app/page.tsx +++ b/apps/web/app/page.tsx @@ -243,7 +243,7 @@ const MemoryGraphPage = () => { queryKey: ["documents-with-memories", selectedProject], initialPageParam: 1, queryFn: async ({ pageParam }) => { - const response = await $fetch("@post/memories/documents", { + const response = await $fetch("@post/documents/documents", { body: { page: pageParam as number, limit: (pageParam as number) === 1 ? (IS_DEV ? 500 : 500) : PAGE_SIZE, |