Skip to content

Commit c580245

Browse files
authored
fix: correct title for Recently viewed home view section (#5982)
1 parent a03a52b commit c580245

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Diff for: src/schema/v2/homeView/__tests__/HomeView.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ describe("homeView", () => {
264264
"node": Object {
265265
"__typename": "ArtworksRailHomeViewSection",
266266
"component": Object {
267-
"title": "Recently viewed works",
267+
"title": "Recently Viewed",
268268
},
269269
},
270270
},

Diff for: src/schema/v2/homeView/__tests__/HomeViewSection.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ describe("HomeViewSection", () => {
8585
"href": "/recently-viewed",
8686
},
8787
},
88-
"title": "Recently viewed works",
88+
"title": "Recently Viewed",
8989
},
9090
}
9191
`)

Diff for: src/schema/v2/homeView/sections.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ export const RecentlyViewedArtworks: HomeViewSection = {
104104
id: "home-view-section-recently-viewed-artworks",
105105
type: "ArtworksRailHomeViewSection",
106106
component: {
107-
title: "Recently viewed works",
107+
title: "Recently Viewed",
108108
behaviors: {
109109
viewAll: {
110110
href: "/recently-viewed",

0 commit comments

Comments
 (0)