Skip to content

Commit

Permalink
minor import cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
karussell committed Aug 13, 2024
1 parent b8b4cd5 commit 49446c2
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/api/Api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { LineString } from 'geojson'
import { getTranslation, tr } from '@/translation/Translation'
import * as config from 'config'
import { Coordinate } from '@/stores/QueryStore'
import { POIPhrase, POIAndQuery, POIQuery } from '@/pois/AddressParseResult'
import { POIQuery } from '@/pois/AddressParseResult'

interface ApiProfile {
name: string
Expand Down
2 changes: 1 addition & 1 deletion src/map/MapPopups.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import InstructionPopup from '@/layers/InstructionPopup'
import React from 'react'
import { PathDetailsStoreState } from '@/stores/PathDetailsStore'
import { MapFeatureStoreState } from '@/stores/MapFeatureStore'
import { POI, POIsStoreState } from '@/stores/POIsStore'
import { POIsStoreState } from '@/stores/POIsStore'
import POIStatePopup from '@/layers/POIPopup'
import { QueryStoreState } from '@/stores/QueryStore'

Expand Down
1 change: 0 additions & 1 deletion src/pois/AddressParseResult.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import Dispatcher from '@/stores/Dispatcher'
import { SetBBox, SetPOIs } from '@/actions/Actions'
import { hitToItem } from '@/Converters'
import { GeocodingHit, ReverseGeocodingHit } from '@/api/graphhopper'
import { QueryPoint } from '@/stores/QueryStore'
import { tr, Translation } from '@/translation/Translation'
import { POI } from '@/stores/POIsStore'

Expand Down
2 changes: 1 addition & 1 deletion test/stores/RouteStore.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
} from '@/api/graphhopper'
import Dispatcher, { Action } from '@/stores/Dispatcher'
import { ClearPoints, ClearRoute, RemovePoint, SetPoint, SetSelectedPath } from '@/actions/Actions'
import { POIAndQuery, POIQuery } from '@/pois/AddressParseResult'
import { POIQuery } from '@/pois/AddressParseResult'

describe('RouteStore', () => {
afterEach(() => {
Expand Down

0 comments on commit 49446c2

Please sign in to comment.