diff --git a/src/app/explorer/page.tsx b/src/app/explorer/page.tsx index 53ed3daa07..ceaa4c59e3 100644 --- a/src/app/explorer/page.tsx +++ b/src/app/explorer/page.tsx @@ -42,7 +42,11 @@ const Page = async ({ searchParams }: { searchParams: SearchParams }) => { }) .then((res) => res.json()) .catch((_) => []), - fetch(ALPHA_GUILDS_API_URL) + fetch(ALPHA_GUILDS_API_URL, { + next: { + revalidate: 600, + }, + }) .then((res) => res.json()) .then((data: AlphaGuild[]) => data.filter((g) => g.isVerified)) .catch((_) => []),