diff options
| author | yxshv <[email protected]> | 2024-04-13 15:01:51 +0530 |
|---|---|---|
| committer | yxshv <[email protected]> | 2024-04-13 15:01:51 +0530 |
| commit | 070ead455120d6da3d0a6843cb0d842a65359c43 (patch) | |
| tree | 67196c3aaec0a07e0b0151f21582fe22ad068ae7 /apps/web/src/contexts | |
| parent | memory item (diff) | |
| download | archived-supermemory-070ead455120d6da3d0a6843cb0d842a65359c43.tar.xz archived-supermemory-070ead455120d6da3d0a6843cb0d842a65359c43.zip | |
search results
Diffstat (limited to 'apps/web/src/contexts')
| -rw-r--r-- | apps/web/src/contexts/MemoryContext.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/web/src/contexts/MemoryContext.tsx b/apps/web/src/contexts/MemoryContext.tsx index a6050332..b805d41e 100644 --- a/apps/web/src/contexts/MemoryContext.tsx +++ b/apps/web/src/contexts/MemoryContext.tsx @@ -62,7 +62,7 @@ export const MemoryProvider: React.FC< if (!user.id) { throw new Error('user id is not define') } - const data = await searchMemoriesAndSpaces(user.id, query) + const data = await searchMemoriesAndSpaces(query) return data as SearchResult[] } |