diff --git a/bundestag.io/admin/src/app/list/past/page.tsx b/bundestag.io/admin/src/app/list/past/page.tsx index 00184c75..61d7240c 100644 --- a/bundestag.io/admin/src/app/list/past/page.tsx +++ b/bundestag.io/admin/src/app/list/past/page.tsx @@ -1,9 +1,11 @@ import Entry from '../_components/entry'; import { IProcedure } from '@democracy-deutschland/bundestagio-common'; +import { unstable_noStore as noStore } from 'next/cache'; export const dynamic = 'force-dynamic'; export default async function Page() { + noStore(); const data = await getData(); return ( <> diff --git a/bundestag.io/admin/src/app/list/upcoming/page.tsx b/bundestag.io/admin/src/app/list/upcoming/page.tsx index 5f9b6a03..f2869bc9 100644 --- a/bundestag.io/admin/src/app/list/upcoming/page.tsx +++ b/bundestag.io/admin/src/app/list/upcoming/page.tsx @@ -1,9 +1,11 @@ import Entry from '../_components/entry'; import { IProcedure } from '@democracy-deutschland/bundestagio-common'; +import { unstable_noStore as noStore } from 'next/cache'; export const dynamic = 'force-dynamic'; export default async function Page() { + noStore(); const data = await getData(); return ( <>