aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoubrid Ihab <boubrid.ihab@gmail.com>2022-06-30 23:47:23 +0100
committerBoubrid Ihab <boubrid.ihab@gmail.com>2022-06-30 23:47:23 +0100
commita0f2c7152367b7289e51f5fbdda67f0e8d561f50 (patch)
tree6adff351af9ba511e46c72acb5afcf0d39b7f2c0
parentd5a1440dd35ee6113cdc98ab80b8c8b935adec81 (diff)
downloadtrackermap-web-a0f2c7152367b7289e51f5fbdda67f0e8d561f50.tar.gz
trackermap-web-a0f2c7152367b7289e51f5fbdda67f0e8d561f50.tar.bz2
trackermap-web-a0f2c7152367b7289e51f5fbdda67f0e8d561f50.zip
fix: live route blank page issue
-rw-r--r--modern/src/map/main/MapLiveRoutes.js2
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]);
}