···66import AppPageLayout from "@/components/layout/app-page-layout";
77import { api } from "@/trpc/server";
8899+export const revalidate = 0; // revalidate the data at most every hour
1010+911export default async function Layout({ children }: { children: ReactNode }) {
1012 const isLimitReached = await api.monitor.isMonitorLimitReached.query();
1113
···88import { TagBadgeWithTooltip } from "@/components/monitor/tag-badge-with-tooltip";
99import { api } from "@/trpc/server";
10101111+export const revalidate = 0; // revalidate the data at most every hour
1212+1113export default async function Layout({
1214 children,
1315 params,