Skip to content

Commit

Permalink
'one short of a million collections'
Browse files Browse the repository at this point in the history
  • Loading branch information
foglabs committed Dec 3, 2024
1 parent 27ceae7 commit 09a5b68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/utils/fetch.jsx
Original file line number Diff line number Diff line change
@@ -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() {
Expand Down

0 comments on commit 09a5b68

Please sign in to comment.