···77import { api } from "@/trpc/server";
8899export const revalidate = 0; // revalidate the data at most every hour
1010+export const dynamic = "force-dynamic";
10111112export default async function Layout({ children }: { children: ReactNode }) {
1213 const isLimitReached = await api.monitor.isMonitorLimitReached.query();
···99import { api } from "@/trpc/server";
10101111export const revalidate = 0; // revalidate the data at most every hour
1212+export const dynamic = "force-dynamic";
12131314export default async function Layout({
1415 children,