Skip to content
Merged
5 changes: 5 additions & 0 deletions public/logos/highstakes.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions public/logos/nodes-guru.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions public/logos/stakeandrelax.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/lib/bench-blob.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ async function fetchJson(url: string): Promise<unknown | null> {
try {
const res = await fetch(url, {
signal: AbortSignal.timeout(FETCH_TIMEOUT_MS),
cache: "no-store",
next: { revalidate: 300 },
});
if (!res.ok) return null;
return await res.json();
Expand Down
Loading