diff --git a/services/api/climate/locations.ts b/services/api/climate/locations.ts index ab1f33f..08c4f18 100644 --- a/services/api/climate/locations.ts +++ b/services/api/climate/locations.ts @@ -1,4 +1,4 @@ import { climateReadingGet } from './host'; export const getLocations = () => - climateReadingGet('/climate-api/location') + climateReadingGet('/gateway-api/climate-api/location') diff --git a/services/api/climate/readings.ts b/services/api/climate/readings.ts index 4fa3ba3..5c60be7 100644 --- a/services/api/climate/readings.ts +++ b/services/api/climate/readings.ts @@ -1,4 +1,4 @@ import { climateReadingGet } from './host'; export const getReadings = (location: string) => - climateReadingGet(`/climate-api/reading/${location}`) + climateReadingGet(`/gateway-api/climate-api/reading/${location}`)