diff --git a/apps/web/src/app/status-page/[domain]/page.tsx b/apps/web/src/app/status-page/[domain]/page.tsx index a48d604bb84..3ec9ef33033 100644 --- a/apps/web/src/app/status-page/[domain]/page.tsx +++ b/apps/web/src/app/status-page/[domain]/page.tsx @@ -14,7 +14,7 @@ type Props = { searchParams: { [key: string]: string | string[] | undefined }; }; -export const revalidate = 120; +export const revalidate = 0; export default async function Page({ params }: Props) { const page = await api.page.getPageBySlug.query({ slug: params.domain });