diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e71a6b9d..47264960e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## Unreleased +### Removed +- removed "revalidatePath" on Items page + ## [0.4.4] 2025-07-01 ### Added - Added Playwright tests to confirm featured section on the homepage (DR-3658) diff --git a/app/items/[uuid]/page.tsx b/app/items/[uuid]/page.tsx index debf118f7..fe3a57d73 100644 --- a/app/items/[uuid]/page.tsx +++ b/app/items/[uuid]/page.tsx @@ -72,7 +72,6 @@ function formatItemBreadcrumbs(item: ItemModel) { } export default async function ItemViewer({ params, searchParams }: ItemProps) { - revalidatePath("/"); const manifest = await getItemManifest(params.uuid); const item = new ItemModel(params.uuid, manifest);