Refactor: Restrict coaster materials to steel and wood

This commit is contained in:
gpt-engineer-app[bot]
2025-10-30 13:15:20 +00:00
parent dd420a1684
commit bf860de3c4
2 changed files with 1 additions and 17 deletions

View File

@@ -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 = [