fix: increase admin artists limit to 1000
Some checks are pending
Deploy Elmeg / deploy (push) Waiting to run
Some checks are pending
Deploy Elmeg / deploy (push) Waiting to run
This commit is contained in:
parent
1199023a52
commit
9b04ae51ff
1 changed files with 1 additions and 1 deletions
|
|
@ -54,7 +54,7 @@ export default function AdminArtistsPage() {
|
|||
if (!token) return
|
||||
|
||||
try {
|
||||
const res = await fetch(`${getApiUrl()}/admin/artists?limit=100`, {
|
||||
const res = await fetch(`${getApiUrl()}/admin/artists?limit=1000`, {
|
||||
headers: { Authorization: `Bearer ${token}` }
|
||||
})
|
||||
if (res.ok) setArtists(await res.json())
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue