Skip to content

Commit

Permalink
fix(3872): update headers on products/requests pages
Browse files Browse the repository at this point in the history
  • Loading branch information
junminahn committed Sep 27, 2024
1 parent 6d71b08 commit 4e405cc
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion app/app/private-cloud/products/all/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export default privateCloudProducts(({ pathParams, queryParams, session }) => {
<>
<Table
title="Products in Private Cloud OpenShift Platform"
description="These are your products hosted on Private Cloud OpenShift platform"
description="These products are hosted on the Private Cloud OpenShift platform."
totalCount={totalCount}
page={snap.page ?? 1}
pageSize={snap.pageSize ?? 10}
Expand Down
4 changes: 2 additions & 2 deletions app/app/private-cloud/requests/all/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ export default privateCloudRequests(({ pathParams, queryParams, session }) => {

return (
<Table
title="Products in Private Cloud OpenShift Platform"
description="Products with pending requests currently under admin review."
title="Requests in Private Cloud OpenShift Platform"
description="These requests are currently under admin review."
totalCount={totalCount}
page={snap.page ?? 1}
pageSize={snap.pageSize ?? 10}
Expand Down
2 changes: 1 addition & 1 deletion app/app/public-cloud/products/all/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export default publicCloudProducts(({ pathParams, queryParams, session }) => {
<>
<Table
title="Products in Public Cloud Landing Zones"
description="These are your products using the Public Cloud Landing Zones"
description="These products are hosted on the Public Cloud Landing Zones."
totalCount={totalCount}
page={snap.page ?? 1}
pageSize={snap.pageSize ?? 10}
Expand Down
4 changes: 2 additions & 2 deletions app/app/public-cloud/requests/all/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ export default publicCloudRequests(({ pathParams, queryParams, session }) => {

return (
<Table
title="Products in Public Cloud OpenShift Platform"
description="Products with pending requests currently under admin review."
title="Requests in Public Cloud Landing Zones"
description="These requests are currently under admin review."
totalCount={totalCount}
page={snap.page ?? 1}
pageSize={snap.pageSize ?? 10}
Expand Down

0 comments on commit 4e405cc

Please sign in to comment.