temp: do not retry MRS requests

This commit is contained in:
Prospector
2025-07-07 16:49:17 -07:00
parent 088cb54317
commit 8ba6467f21

View File

@@ -134,7 +134,7 @@ export async function useServersFetch<T>(
? errorMessages[statusCode]
: `HTTP Error: ${statusCode || "unknown"} ${statusText}`;
const isRetryable = statusCode ? [408, 429, 500, 502, 504].includes(statusCode) : true;
const isRetryable = false;
if (!isRetryable || attempts >= maxAttempts) {
console.error("Fetch error:", error);