Skip to content
This repository has been archived by the owner on Jan 25, 2024. It is now read-only.

Commit

Permalink
Remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
floriandejonckheere committed Dec 9, 2023
1 parent 40fb255 commit d9d38ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/api/data.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Location, Sensor, Alert, Suggestion } from '../types'
import { Location, Alert, Suggestion } from '../types'

export const LOCATIONS: Location[] = [
{
Expand Down
2 changes: 1 addition & 1 deletion src/api/queries/measurements.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const useMeasurements = (
const start = moment(startTime).format()
const end = moment(endTime).format()

const { isSuccess, isError, error, data } = useQueries({
const { isSuccess, isError, data } = useQueries({
queries: sensors.map((sensor) => ({
queryKey: ['measurements', sensor.name, start, end],
queryFn: () => measurements(sensor.device, sensor.sensor, start, end)
Expand Down

0 comments on commit d9d38ce

Please sign in to comment.