diff --git a/web/src/pages/Benchmarks/index.jsx b/web/src/pages/Benchmarks/index.jsx index ff74f1a..2702ac7 100644 --- a/web/src/pages/Benchmarks/index.jsx +++ b/web/src/pages/Benchmarks/index.jsx @@ -98,7 +98,7 @@ const Benchmarks = () => { // Try to fetch backend data in background (async () => { try { - const res = await API.get('/api/option/'); + const res = await API.get('/api/option/', { skipErrorHandler: true }); if (res.data?.success && res.data?.data) { const option = res.data.data.find((o) => o.key === 'benchmark_data.models'); if (option?.value) {