Spaces:
Runtime error
Runtime error
infinite refetch pass userId
Browse files
components/main/hooks/useCollections.ts
CHANGED
@@ -48,7 +48,7 @@ export const useCollections = (category: string) => {
|
|
48 |
const response = await fetch("/api/collections", {
|
49 |
method: "POST",
|
50 |
body: JSON.stringify({
|
51 |
-
|
52 |
page: data?.pagination?.page,
|
53 |
}),
|
54 |
})
|
|
|
48 |
const response = await fetch("/api/collections", {
|
49 |
method: "POST",
|
50 |
body: JSON.stringify({
|
51 |
+
userId: category === 'my-own' ? user?.sub : undefined,
|
52 |
page: data?.pagination?.page,
|
53 |
}),
|
54 |
})
|