This commit is contained in:
Dhravya Shah 2025-09-18 12:16:45 -07:00
parent a6890ccab0
commit 4942525ee9

View file

@ -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,