Skip to content

Commit 0df668d

Browse files
committed
fix: update deps
1 parent c419e0e commit 0df668d

File tree

4 files changed

+315
-35
lines changed

4 files changed

+315
-35
lines changed

frontend/app/App.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
*/
1313
import './App.scss';
1414
import Header from './components/Header';
15-
import LoginModal from './components/LoginModal';
1615
import LocationModal from './components/LocationModal';
1716
import TargetPriceModal from './components/TargetPriceModal';
1817
import Main from './components/Main';

frontend/app/components/GsMap.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ export default function GsMap(inputProps: InputProps) {
107107
}
108108

109109
function addClickListener(myOverlays: Overlay[]) {
110-
map.on('click', (event: MapBrowserEvent<UIEvent>) => {
110+
map.on('click', (event: MapBrowserEvent<any>) => {
111111
const feature = map.forEachFeatureAtPixel(event.pixel, (feature) => {
112112
return feature;
113113
});

0 commit comments

Comments
 (0)