fix: correct default fuelType in useStations from 'petrol' to 'e10'

This commit is contained in:
Ovidiu U
2026-04-11 18:50:29 +01:00
parent 5fe9f9dc6d
commit 2747047f53

View File

@@ -7,7 +7,7 @@ export function useStations() {
const loading = ref(false)
const error = ref(null)
async function search({ postcode, lat, lng, fuelType = 'petrol', radius = 10, sort = 'price' }) {
async function search({ postcode, lat, lng, fuelType = 'e10', radius = 10, sort = 'price' }) {
loading.value = true
error.value = null
stations.value = []