diff --git a/src/components/RequestList/index.tsx b/src/components/RequestList/index.tsx index bc3cdc840..7b65f15a6 100644 --- a/src/components/RequestList/index.tsx +++ b/src/components/RequestList/index.tsx @@ -117,7 +117,13 @@ const RequestList = () => { currentPageSize, }) ); - }, [currentFilter, currentMediaType, currentSort, currentSortDirection, currentPageSize]); + }, [ + currentFilter, + currentMediaType, + currentSort, + currentSortDirection, + currentPageSize, + ]); if (!data && !error) { return ; @@ -185,7 +191,8 @@ const RequestList = () => { - ; + + ;
@@ -292,7 +299,8 @@ const RequestList = () => { {intl.formatMessage(globalMessages.noresults)} - {(currentFilter !== Filter.ALL || currentMediaType !== Filter.ALL) && ( + {(currentFilter !== Filter.ALL || + currentMediaType !== Filter.ALL) && (