Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
1 change: 0 additions & 1 deletion app/items/[uuid]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down