diff --git a/src/FilterLists.Web/ClientApp/modules/home/Home.tsx b/src/FilterLists.Web/ClientApp/modules/home/Home.tsx index 165f7965d..f7b9f7a95 100644 --- a/src/FilterLists.Web/ClientApp/modules/home/Home.tsx +++ b/src/FilterLists.Web/ClientApp/modules/home/Home.tsx @@ -52,7 +52,7 @@ export class Home extends React.Component { updatePageSize() { this.setState({ - pageSize: Math.max(Math.floor((window.innerHeight - 386) / 52), 5) + pageSize: Math.max(Math.floor((window.innerHeight - 400) / 52), 5) }); };