From dd46e5ab85a989d5d7b182a58e339579f7a896c1 Mon Sep 17 00:00:00 2001 From: Matthias Kretschmann Date: Thu, 22 Oct 2020 13:22:42 +0200 Subject: [PATCH] limit pool transactions list --- src/components/pages/History/PoolTransactions.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/pages/History/PoolTransactions.tsx b/src/components/pages/History/PoolTransactions.tsx index 7f68f71d1..1482662f9 100644 --- a/src/components/pages/History/PoolTransactions.tsx +++ b/src/components/pages/History/PoolTransactions.tsx @@ -97,8 +97,8 @@ export default function PoolTransactions(): ReactElement { data={logs} className={styles.table} noHeader - pagination={logs?.length >= 19} - paginationPerPage={20} + pagination={logs?.length >= 9} + paginationPerPage={10} noDataComponent={} /> )