fix: increase admin artists limit to 1000
Some checks are pending
Deploy Elmeg / deploy (push) Waiting to run

This commit is contained in:
fullsizemalt 2025-12-24 13:29:07 -08:00
parent 1199023a52
commit 9b04ae51ff

View file

@ -54,7 +54,7 @@ export default function AdminArtistsPage() {
if (!token) return if (!token) return
try { try {
const res = await fetch(`${getApiUrl()}/admin/artists?limit=100`, { const res = await fetch(`${getApiUrl()}/admin/artists?limit=1000`, {
headers: { Authorization: `Bearer ${token}` } headers: { Authorization: `Bearer ${token}` }
}) })
if (res.ok) setArtists(await res.json()) if (res.ok) setArtists(await res.json())