removes the test query params on ListView component

This commit is contained in:
Jarrod Flesch
2020-02-26 14:47:06 -05:00
parent c6a988a208
commit e8dcc3edf0

View File

@@ -26,8 +26,6 @@ const ListView = (props) => {
const apiURL = [
`${serverURL}/${collection.slug}?`,
page && `page=${page}&`,
'page=4&',
'limit=1',
].filter(Boolean).join('');
const [{ data }] = usePayloadAPI(apiURL);