From cacc49e3dbfbbfe2ce4db7528cee9610580c99e7 Mon Sep 17 00:00:00 2001 From: Irwanto <irwanto_kong@yahoo.co.id> Date: Thu, 4 Jun 2020 11:52:56 +0700 Subject: [PATCH] [CHORES] Fix paging on statistics table --- src/scenes/Home/components/Statistic/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scenes/Home/components/Statistic/index.tsx b/src/scenes/Home/components/Statistic/index.tsx index 064949c..e416b69 100644 --- a/src/scenes/Home/components/Statistic/index.tsx +++ b/src/scenes/Home/components/Statistic/index.tsx @@ -308,7 +308,7 @@ function Statistic({ tempData = tableData.slice(index, index + 10); } setPagedData(tempData); - return pagedData; + return tempData; }} /> -- GitLab