fix(StorePage): change the label of the "Most Popular" option in the select dropdown to "Popular" for brevity and consistency

This commit is contained in:
anovazzi1 2023-11-14 16:01:43 -03:00
commit 775dec574f

View file

@ -273,7 +273,7 @@ export default function StorePage(): JSX.Element {
<SelectValue placeholder="Popular" />
</SelectTrigger>
<SelectContent>
<SelectItem value="Popular">Most Popular</SelectItem>
<SelectItem value="Popular">Popular</SelectItem>
{/* <SelectItem value="Recent">Most Recent</SelectItem> */}
<SelectItem value="Alphabetical">Alphabetical</SelectItem>
</SelectContent>