From 789bbb6e0397c1a117f80906283c978351b07406 Mon Sep 17 00:00:00 2001 From: kyuuseiryuu Date: Tue, 10 Feb 2026 22:23:17 +0900 Subject: [PATCH] feat: set pagination page size to 100 in PlayerList table - Add pageSize configuration to table pagination - Displays 100 items per page for better data visibility --- src/components/PlayerList.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/PlayerList.tsx b/src/components/PlayerList.tsx index 69706db..413e9f6 100644 --- a/src/components/PlayerList.tsx +++ b/src/components/PlayerList.tsx @@ -18,6 +18,7 @@ export const PlayerList: React.FC = props => { rowKey={(e) => `${e.name}-${e.uid}`} loading={props.loading} pagination={{ + pageSize: 100, placement: ['topCenter', 'bottomCenter'], }} >