Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix missed copy edit [WEB-2791] #35

Merged
merged 1 commit into from
Mar 12, 2024
Merged
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
7 changes: 3 additions & 4 deletions src/components/search/SearchPreview.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,8 @@ function SearchPreview() {
</button>
) : (
<p className="f-body">
You have already added {limits.items.max} artworks, the
maximum number allowed. Please remove one if you would like
to include this artwork.
You have already added {limits.items.max} artworks, the maximum number allowed.
Please remove one if you would like to choose a different work.
</p>
)}
</div>
Expand Down Expand Up @@ -194,7 +193,7 @@ function SearchPreview() {

<div className="aic-ct-preview__core">
<p className="f-body">
You have already added 6 artworks, the maximum number allowed.
You have already added {limits.items.max} artworks, the maximum number allowed.
Please remove one if you would like to choose a different work.
</p>
</div>
Expand Down
4 changes: 1 addition & 3 deletions src/components/tour/TourItems.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ function TourItems() {
</p>
{tourItems.length === 6 && (
<p>
<br />
<br />
You&apos;ve added 6 artworks, the maximum number allowed. You
may remove one if you would like to choose a different work.
Expand Down Expand Up @@ -116,8 +115,7 @@ function TourItems() {
<>
<p className="f-body">
You&apos;ve added {tourItems.length} artworks, the maximum
number allowed. Please remove one if you would like to include
more artwork
number allowed. Please remove one if you would like to choose a different work.
</p>
<div className="aic-ct-tour__cta-actions">
<button
Expand Down
Loading