From d0f9f68689cb3196747e239b4517cd7efe602fb8 Mon Sep 17 00:00:00 2001 From: "Abdulazez (Abza)" Date: Fri, 22 May 2026 07:18:42 +0300 Subject: [PATCH] fix: correct reversed comparison in admin organisations table pagination (#2842) --- apps/remix/app/components/tables/admin-organisations-table.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/remix/app/components/tables/admin-organisations-table.tsx b/apps/remix/app/components/tables/admin-organisations-table.tsx index e8e031afe..ee336af8d 100644 --- a/apps/remix/app/components/tables/admin-organisations-table.tsx +++ b/apps/remix/app/components/tables/admin-organisations-table.tsx @@ -238,7 +238,7 @@ export const AdminOrganisationsTable = ({ }} > {(table) => - !hidePaginationUntilOverflow || 1 > table.getPageCount() ? ( + !hidePaginationUntilOverflow || table.getPageCount() > 1 ? ( ) : null }