diff --git a/common/app/routes/Hikes/components/Map.jsx b/common/app/routes/Hikes/components/Map.jsx index 4c3ec01e8d..83e51d1fa4 100644 --- a/common/app/routes/Hikes/components/Map.jsx +++ b/common/app/routes/Hikes/components/Map.jsx @@ -21,11 +21,11 @@ export default contain( hikes } = this.props; - const vidElements = hikes.map(({ name, id }) => { + const vidElements = hikes.map(({ title, id }) => { return ( -

{ name }

+

{ title }

);