Skip to content

Commit

Permalink
fix: correct title for Recently viewed home view section (#5982)
Browse files Browse the repository at this point in the history
  • Loading branch information
nickskalkin authored Sep 6, 2024
1 parent a03a52b commit c580245
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/schema/v2/homeView/__tests__/HomeView.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ describe("homeView", () => {
"node": Object {
"__typename": "ArtworksRailHomeViewSection",
"component": Object {
"title": "Recently viewed works",
"title": "Recently Viewed",
},
},
},
Expand Down
2 changes: 1 addition & 1 deletion src/schema/v2/homeView/__tests__/HomeViewSection.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ describe("HomeViewSection", () => {
"href": "/recently-viewed",
},
},
"title": "Recently viewed works",
"title": "Recently Viewed",
},
}
`)
Expand Down
2 changes: 1 addition & 1 deletion src/schema/v2/homeView/sections.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export const RecentlyViewedArtworks: HomeViewSection = {
id: "home-view-section-recently-viewed-artworks",
type: "ArtworksRailHomeViewSection",
component: {
title: "Recently viewed works",
title: "Recently Viewed",
behaviors: {
viewAll: {
href: "/recently-viewed",
Expand Down

0 comments on commit c580245

Please sign in to comment.