Skip to content

Commit

Permalink
Changed message for component for searching and filtering material to…
Browse files Browse the repository at this point in the history
… make more grammatical sense
  • Loading branch information
mbeps committed May 14, 2024
1 parent 9cbc803 commit f040b29
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/Filters/FilterSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ const FilterSection: React.FC<FilterSectionProps> = ({
* If there are no archived materials, it will display "Searching & Filtering {name}".
*/
const message: string = archiveFilter.hasArchivedMaterials
? `Searching, Filtering and Archived ${name}`
: `Searching & Filtering ${name}`;
? `Search, Filter and View Archived ${name}`
: `Search & Filter ${name}`;

const [isFilterOpen, setIsFilterModalOpen] = useState(false);
function handleToggleFilter() {
Expand Down

0 comments on commit f040b29

Please sign in to comment.