From fc8eb79b98bbea558bd614dc71dd66b72ab9b0c0 Mon Sep 17 00:00:00 2001 From: MohamedBassem Date: Sun, 17 Mar 2024 13:12:11 +0000 Subject: feature: Implemente pagination support --- apps/web/app/dashboard/lists/[listId]/page.tsx | 2 +- apps/web/app/dashboard/search/page.tsx | 2 +- apps/web/app/dashboard/tags/[tagName]/page.tsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'apps/web/app/dashboard') diff --git a/apps/web/app/dashboard/lists/[listId]/page.tsx b/apps/web/app/dashboard/lists/[listId]/page.tsx index b9a26053..a8ba4feb 100644 --- a/apps/web/app/dashboard/lists/[listId]/page.tsx +++ b/apps/web/app/dashboard/lists/[listId]/page.tsx @@ -43,7 +43,7 @@ export default async function ListPage({
); 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 ? ( b.id) }} - bookmarks={data.bookmarks} + bookmarks={data} /> ) : ( diff --git a/apps/web/app/dashboard/tags/[tagName]/page.tsx b/apps/web/app/dashboard/tags/[tagName]/page.tsx index dee29c5e..f06062c3 100644 --- a/apps/web/app/dashboard/tags/[tagName]/page.tsx +++ b/apps/web/app/dashboard/tags/[tagName]/page.tsx @@ -38,7 +38,7 @@ export default async function TagPage({
{tagName}
- +
); } -- cgit v1.2.3-70-g09d2