Openstatus www.openstatus.dev
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

๐Ÿ› cache (#892)

authored by

Thibault Le Ouay and committed by
GitHub
f1753df8 291abe11

+2
+1
apps/web/src/app/app/[workspaceSlug]/(dashboard)/monitors/(overview)/layout.tsx
··· 7 7 import { api } from "@/trpc/server"; 8 8 9 9 export const revalidate = 0; // revalidate the data at most every hour 10 + export const dynamic = "force-dynamic"; 10 11 11 12 export default async function Layout({ children }: { children: ReactNode }) { 12 13 const isLimitReached = await api.monitor.isMonitorLimitReached.query();
+1
apps/web/src/app/app/[workspaceSlug]/(dashboard)/monitors/[id]/layout.tsx
··· 9 9 import { api } from "@/trpc/server"; 10 10 11 11 export const revalidate = 0; // revalidate the data at most every hour 12 + export const dynamic = "force-dynamic"; 12 13 13 14 export default async function Layout({ 14 15 children,