feat: default fuel type to petrol

This commit is contained in:
Ovidiu U
2026-04-05 20:46:25 +01:00
parent eed6ef9c81
commit cd9d833e44

View File

@@ -14,7 +14,7 @@ class StationSearch extends Component
public string $search = '';
#[Validate('required|string', message: 'Please select a fuel type.')]
public string $fuelType = '';
public string $fuelType = 'petrol';
#[Validate('required|integer|min:1|max:20')]
public int $radius = 5;