···10101111export const revalidate = 0; // revalidate the data at most every hour
1212export const dynamic = "force-dynamic";
1313+export const fetchCache = "force-no-store";
13141415export default async function Layout({
1516 children,
···100100 <Link
101101 href={`./monitors/${row.original.monitor.id}/overview`}
102102 className="group flex max-w-full items-center gap-2"
103103+ prefetch={false}
103104 >
104105 <span className="truncate group-hover:underline">{name}</span>
105106 </Link>
···120121 // REMINDER: if one value is found, return true
121122 // we could consider restricting it to all the values have to be found
122123 return value.some((item) =>
123123- row.original.tags?.some((tag) => tag.name === item),
124124+ row.original.tags?.some((tag) => tag.name === item)
124125 );
125126 },
126127 },