From afe1466758f800b6b2fadbe8193e5f5a1b433996 Mon Sep 17 00:00:00 2001 From: Pablo Pettinari Date: Tue, 11 Jun 2024 10:41:23 +0200 Subject: [PATCH] revalidate find-wallet page daily --- src/pages/wallets/find-wallet.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/pages/wallets/find-wallet.tsx b/src/pages/wallets/find-wallet.tsx index 9773670abb1..e94d6bd0a1d 100644 --- a/src/pages/wallets/find-wallet.tsx +++ b/src/pages/wallets/find-wallet.tsx @@ -29,6 +29,7 @@ import { } from "@/lib/utils/wallets" import { + BASE_TIME_UNIT, DEFAULT_LOCALE, NAV_BAR_PX_HEIGHT, WALLETS_FILTERS_DEFAULT, @@ -81,6 +82,8 @@ export const getStaticProps = (async ({ locale }) => { lastDeployDate, wallets, }, + // Updated once a day + revalidate: BASE_TIME_UNIT * 24, } }) satisfies GetStaticProps