diff --git a/src/components/parks/ParkSortOptions.tsx b/src/components/parks/ParkSortOptions.tsx
index 1b39c0f8..6bf38fea 100644
--- a/src/components/parks/ParkSortOptions.tsx
+++ b/src/components/parks/ParkSortOptions.tsx
@@ -12,10 +12,10 @@ export function ParkSortOptions({ sort, onSortChange }: ParkSortOptionsProps) {
const sortOptions = [
{ value: 'name', label: 'Name' },
{ value: 'rating', label: 'Rating' },
- { value: 'rides', label: 'Ride Count' },
- { value: 'coasters', label: 'Coaster Count' },
- { value: 'reviews', label: 'Review Count' },
- { value: 'opening', label: 'Opening Date' },
+ { value: 'rides', label: 'Rides' },
+ { value: 'coasters', label: 'Coasters' },
+ { value: 'reviews', label: 'Reviews' },
+ { value: 'opening', label: 'Opening' },
];
const toggleDirection = () => {
@@ -26,19 +26,19 @@ export function ParkSortOptions({ sort, onSortChange }: ParkSortOptionsProps) {
};
return (
-
+