From cb1516ae4126f3b43eec85ab092950ecd41b443a Mon Sep 17 00:00:00 2001 From: BrickheadJohnny Date: Wed, 9 Jul 2025 16:11:38 +0200 Subject: [PATCH] fix(explorer): set cache value for alpha guilds --- src/app/explorer/page.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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((_) => []),