diff --git a/web/src/lib/api.ts b/web/src/lib/api.ts index 4bd93c15..6eebc5f0 100644 --- a/web/src/lib/api.ts +++ b/web/src/lib/api.ts @@ -9,9 +9,7 @@ import type { AuthorData, IconFile, IconWithName } from "@/types/icons" */ export async function getAllIcons(): Promise { try { - const response = await fetch(METADATA_URL, { - next: { revalidate: 3600 }, - }) + const response = await fetch(METADATA_URL) if (!response.ok) { throw new ApiError(`Failed to fetch icons: ${response.statusText}`, response.status)