mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-23 11:31:13 -05:00
Refactor: Restrict coaster materials to steel and wood
This commit is contained in:
@@ -99,21 +99,13 @@ const intensityLevels = [
|
||||
];
|
||||
|
||||
const TRACK_MATERIALS = [
|
||||
{ value: 'wood', label: 'Wood' },
|
||||
{ value: 'steel', label: 'Steel' },
|
||||
{ value: 'hybrid', label: 'Hybrid' },
|
||||
{ value: 'aluminum', label: 'Aluminum' },
|
||||
{ value: 'composite', label: 'Composite' },
|
||||
{ value: 'other', label: 'Other' },
|
||||
{ value: 'wood', label: 'Wood' },
|
||||
];
|
||||
|
||||
const SUPPORT_MATERIALS = [
|
||||
{ value: 'steel', label: 'Steel' },
|
||||
{ value: 'wood', label: 'Wood' },
|
||||
{ value: 'concrete', label: 'Concrete' },
|
||||
{ value: 'aluminum', label: 'Aluminum' },
|
||||
{ value: 'composite', label: 'Composite' },
|
||||
{ value: 'other', label: 'Other' },
|
||||
];
|
||||
|
||||
const PROPULSION_METHODS = [
|
||||
|
||||
@@ -203,19 +203,11 @@ export function RideFilters({ filters, onFiltersChange, rides }: RideFiltersProp
|
||||
const trackMaterialOptions: MultiSelectOption[] = [
|
||||
{ label: 'Steel', value: 'steel' },
|
||||
{ label: 'Wood', value: 'wood' },
|
||||
{ label: 'Hybrid', value: 'hybrid' },
|
||||
{ label: 'Aluminum', value: 'aluminum' },
|
||||
{ label: 'Composite', value: 'composite' },
|
||||
{ label: 'Other', value: 'other' },
|
||||
];
|
||||
|
||||
const supportMaterialOptions: MultiSelectOption[] = [
|
||||
{ label: 'Steel', value: 'steel' },
|
||||
{ label: 'Wood', value: 'wood' },
|
||||
{ label: 'Concrete', value: 'concrete' },
|
||||
{ label: 'Aluminum', value: 'aluminum' },
|
||||
{ label: 'Composite', value: 'composite' },
|
||||
{ label: 'Other', value: 'other' },
|
||||
];
|
||||
|
||||
const propulsionMethodOptions: MultiSelectOption[] = [
|
||||
|
||||
Reference in New Issue
Block a user