aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/app/dashboard/search/page.tsx
diff options
context:
space:
mode:
authorMohamedBassem <me@mbassem.com>2024-03-17 13:12:11 +0000
committerMohamedBassem <me@mbassem.com>2024-03-17 13:12:11 +0000
commitfc8eb79b98bbea558bd614dc71dd66b72ab9b0c0 (patch)
treee868b500b8b5d00cf82011013b68dd3e669bbec3 /apps/web/app/dashboard/search/page.tsx
parente86f6a9cf0eb271abfc7cf53ec10ef372d52f0bd (diff)
downloadkarakeep-fc8eb79b98bbea558bd614dc71dd66b72ab9b0c0.tar.zst
feature: Implemente pagination support
Diffstat (limited to 'apps/web/app/dashboard/search/page.tsx')
-rw-r--r--apps/web/app/dashboard/search/page.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/web/app/dashboard/search/page.tsx b/apps/web/app/dashboard/search/page.tsx
index 38099c18..62d42a43 100644
--- a/apps/web/app/dashboard/search/page.tsx
+++ b/apps/web/app/dashboard/search/page.tsx
@@ -24,7 +24,7 @@ function SearchComp() {
{data ? (
<BookmarksGrid
query={{ ids: data.bookmarks.map((b) => b.id) }}
- bookmarks={data.bookmarks}
+ bookmarks={data}
/>
) : (
<Loading />