diff --git a/src/App.vue b/src/App.vue index 7e30128..7ba8a70 100644 --- a/src/App.vue +++ b/src/App.vue @@ -26,7 +26,6 @@ const paginationParamKeys = [ "page", "rowsPerPage", - "rowsNumber", ]; const setStateFromParams = () => { const newSearchData: any = {}; @@ -153,8 +152,8 @@ pushState(); } - function setPagination() { - searchGames(pagination.value); + function setPagination(pagination: any) { + searchGames(pagination); pushState(); }