diff --git a/app/[locale]/shop-list/layout.tsx b/app/[locale]/shop-list/layout.tsx index 16fd7989e..8ec725c55 100644 --- a/app/[locale]/shop-list/layout.tsx +++ b/app/[locale]/shop-list/layout.tsx @@ -1,5 +1,7 @@ import { Suspense } from 'react'; +export const revalidate = 300; // 5 minutes in seconds + export default function Layout({ children }: { children: React.ReactNode }) { return {children}; }