diff options
| author | Kush Thaker <[email protected]> | 2024-09-10 14:08:52 +0530 |
|---|---|---|
| committer | Kush Thaker <[email protected]> | 2024-09-10 14:08:52 +0530 |
| commit | a5e2aec4b1bff8f6b39fb86b068b195ab8ef4461 (patch) | |
| tree | d87ffc707d53e841cb42af761301f93015b76842 | |
| parent | feat: add loading card for memories page (diff) | |
| download | supermemory-kush/loadingCard.tar.xz supermemory-kush/loadingCard.zip | |
Fix: update return type for getAllUserMemoriesAndSpaceskush/loadingCard
| -rw-r--r-- | apps/web/app/actions/fetchers.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/apps/web/app/actions/fetchers.ts b/apps/web/app/actions/fetchers.ts index bed930c5..25aad8e3 100644 --- a/apps/web/app/actions/fetchers.ts +++ b/apps/web/app/actions/fetchers.ts @@ -162,7 +162,6 @@ export const getMemoriesInsideSpace = async ( export const getAllUserMemoriesAndSpaces = async (): ServerActionReturnType<{ spaces: StoredSpace[]; memories: Content[]; - userId: string; }> => { const data = await auth(); |