diff --git a/src/store/apiStore.ts b/src/store/apiStore.ts index 69f84e5..8502134 100644 --- a/src/store/apiStore.ts +++ b/src/store/apiStore.ts @@ -59,11 +59,7 @@ export const useApiStore = defineStore('apiStore', { if (t >= this.nextDataCheckTime) { this.fetchDonatorsData(); this.fetchVehiclesInfo(); - - // Revalidation after staling - this.fetchStationsGeneralInfo().then(() => { - this.fetchStationsGeneralInfo(); - }); + this.fetchStationsGeneralInfo(); this.nextDataCheckTime = t + 3600000; }