Skip to content

Commit

Permalink
updated complaints search inputs placeholders (#3739)
Browse files Browse the repository at this point in the history
  • Loading branch information
chlebektomas authored Jan 20, 2025
2 parents d151d45 + 97f33e9 commit b114ed7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion storefront/pages/customer/complaints.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const ComplaintsPage: FC = () => {
<div className="my-5">
<SearchInput
className="w-full border border-inputBorder"
label={t('Search for a product you want to complain about')}
label={t('Search for a product you complained about')}
shouldShowSpinnerInInput={complaintsDataFetching}
value={searchQueryValue}
onChange={(e) => setSearchQueryValue(e.currentTarget.value)}
Expand Down
2 changes: 1 addition & 1 deletion storefront/pages/customer/new-complaint.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ const NewComplaintPage: FC = () => {
<div className="mb-5">
<SearchInput
className="w-full border border-inputBorder"
label={t('Search for a product you complained about')}
label={t('Search for a product you want to complain about')}
shouldShowSpinnerInInput={searchOrderedItemsDataFetching}
value={searchQueryValue}
onChange={(e) => setSearchQueryValue(e.currentTarget.value)}
Expand Down

0 comments on commit b114ed7

Please sign in to comment.