diff options
author | Boubrid Ihab <boubrid.ihab@gmail.com> | 2022-06-30 23:47:23 +0100 |
---|---|---|
committer | Boubrid Ihab <boubrid.ihab@gmail.com> | 2022-06-30 23:47:23 +0100 |
commit | a0f2c7152367b7289e51f5fbdda67f0e8d561f50 (patch) | |
tree | 6adff351af9ba511e46c72acb5afcf0d39b7f2c0 /modern/src/map/main/MapLiveRoutes.js | |
parent | d5a1440dd35ee6113cdc98ab80b8c8b935adec81 (diff) | |
download | trackermap-web-a0f2c7152367b7289e51f5fbdda67f0e8d561f50.tar.gz trackermap-web-a0f2c7152367b7289e51f5fbdda67f0e8d561f50.tar.bz2 trackermap-web-a0f2c7152367b7289e51f5fbdda67f0e8d561f50.zip |
fix: live route blank page issue
Diffstat (limited to 'modern/src/map/main/MapLiveRoutes.js')
-rw-r--r-- | modern/src/map/main/MapLiveRoutes.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modern/src/map/main/MapLiveRoutes.js b/modern/src/map/main/MapLiveRoutes.js index a675afa0..fc1a1dde 100644 --- a/modern/src/map/main/MapLiveRoutes.js +++ b/modern/src/map/main/MapLiveRoutes.js @@ -60,7 +60,7 @@ const MapLiveRoutes = () => { setRoute([position]); } } else if (position) { - const last = route.findLast(() => true); + const last = route.at(-1); if (!last || (last.latitude !== position.latitude && last.longitude !== position.longitude)) { setRoute([...route.slice(-9), position]); } |