diff options
Diffstat (limited to 'modern/src/map')
-rw-r--r-- | modern/src/map/MapRoutePath.js (renamed from modern/src/map/MapReplayPath.js) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modern/src/map/MapReplayPath.js b/modern/src/map/MapRoutePath.js index 139490db..5797e6dd 100644 --- a/modern/src/map/MapReplayPath.js +++ b/modern/src/map/MapRoutePath.js @@ -3,7 +3,7 @@ import { useEffect } from 'react'; import { useSelector } from 'react-redux'; import { map } from './core/Map'; -const MapReplayPath = ({ positions }) => { +const MapRoutePath = ({ positions }) => { const id = 'replay'; const reportColor = useSelector((state) => { @@ -80,4 +80,4 @@ const MapReplayPath = ({ positions }) => { return null; }; -export default MapReplayPath; +export default MapRoutePath; |