From b7bf9c9d23e0d5ff226d56cc4a46f860fd5d293d Mon Sep 17 00:00:00 2001 From: ISA Date: Wed, 18 Dec 2024 21:47:52 +0100 Subject: [PATCH] APP_VERSION = "1.0.16.2" currentPoiSlice als Redux Slice implementiert statt Recoil atom --- components/MapComponent.js | 3 ++- config/appVersion.js | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/components/MapComponent.js b/components/MapComponent.js index 9dcb06a50..63f349fc2 100644 --- a/components/MapComponent.js +++ b/components/MapComponent.js @@ -62,6 +62,7 @@ import { const MapComponent = ({ locations, onLocationUpdate, lineCoordinates }) => { const dispatch = useDispatch(); const currentPoi = useSelector(selectCurrentPoi); + //const setCurrentPoi = useSetRecoilState(currentPoiState); const polylineVisible = useRecoilValue(polylineLayerVisibleState); const [editMode, setEditMode] = useState(false); // editMode Zustand const { deviceName, setDeviceName } = useMapComponentState(); @@ -82,7 +83,7 @@ const currentPoi = useSelector(selectCurrentPoi); const [currentPoiData, setCurrentPoiData] = useState(null); - //const setCurrentPoi = useSetRecoilState(currentPoiState); + diff --git a/config/appVersion.js b/config/appVersion.js index 3a4598475..4a5815467 100644 --- a/config/appVersion.js +++ b/config/appVersion.js @@ -1,2 +1,2 @@ // /config/appVersion -export const APP_VERSION = "1.0.16.1"; +export const APP_VERSION = "1.0.16.2";