diff --git a/app/utils/fetch.jsx b/app/utils/fetch.jsx index 8f9d9053..a506dd53 100644 --- a/app/utils/fetch.jsx +++ b/app/utils/fetch.jsx @@ -1,11 +1,11 @@ export async function getExhibits() { - return await fetch(process.env.OV_API_URL + '/api/v2/exhibits/', res => { + return await fetch(process.env.OV_API_URL + '/api/v2/exhibits/?limit=999999', res => { console.log('exs', res) }) } export async function getCollections() { - return await fetch(process.env.OV_API_URL + '/api/v2/collections/') + return await fetch(process.env.OV_API_URL + '/api/v2/collections/?limit=999999') } export async function getHomepage() {