From 6775eeef88a104de708018cc504325ea32a3fe88 Mon Sep 17 00:00:00 2001 From: Gary Sheng <89985066+garysheng@users.noreply.github.com> Date: Sat, 14 Mar 2026 09:15:17 -0500 Subject: [PATCH] fix: add revalidate = 1800 to /packs listing page The /packs listing page was missing the ISR revalidate export, causing it to serve stale prerendered snapshots while individual pack pages (which already export revalidate = 1800) updated correctly. Fixes #16 --- site/src/app/packs/page.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/site/src/app/packs/page.tsx b/site/src/app/packs/page.tsx index 9712ef2..5be42b3 100644 --- a/site/src/app/packs/page.tsx +++ b/site/src/app/packs/page.tsx @@ -3,6 +3,8 @@ import type { Metadata } from "next"; import { fetchAllPacks } from "@/lib/registry"; import { PacksClient } from "./PacksClient"; +export const revalidate = 1800; + export const metadata: Metadata = { title: "Sound Packs", description: