From aa0546755ca86d13dfd2a5536dcca481917c95b4 Mon Sep 17 00:00:00 2001 From: "@zarnivoop" <9827931+zarnivoop@users.noreply.github.com> Date: Tue, 25 Aug 2026 07:53:59 +0000 Subject: [PATCH 1/3] fix: hide load more in board view --- apps/web/src/app/(authenticated)/tasks/Tasks.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/src/app/(authenticated)/tasks/Tasks.tsx b/apps/web/src/app/(authenticated)/tasks/Tasks.tsx index c2fd6ab87..e2cf7e56a 100644 --- a/apps/web/src/app/(authenticated)/tasks/Tasks.tsx +++ b/apps/web/src/app/(authenticated)/tasks/Tasks.tsx @@ -711,7 +711,7 @@ export const Tasks = () => { ))} )} - {infiniteTasks.hasNextPage && ( + {!isBoardView && infiniteTasks.hasNextPage && (