summaryrefslogtreecommitdiff
path: root/src/components/map/groups/GridGroup.js
diff options
context:
space:
mode:
authorGeorgios Andreadis <g.andreadis@student.tudelft.nl>2017-09-05 09:55:19 +0200
committerGeorgios Andreadis <g.andreadis@student.tudelft.nl>2017-09-23 10:05:57 +0200
commit02eafd26b8841ed5896ab83672aba13d569ea63d (patch)
tree4ef0a58b0efdb0d0ccbac81d45c25397c875398e /src/components/map/groups/GridGroup.js
parent42778e8be409b97059fa519b53c303cdba502e01 (diff)
Fix issue loading DC with previously filled store
Diffstat (limited to 'src/components/map/groups/GridGroup.js')
-rw-r--r--src/components/map/groups/GridGroup.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/map/groups/GridGroup.js b/src/components/map/groups/GridGroup.js
index f50482ce..7affeced 100644
--- a/src/components/map/groups/GridGroup.js
+++ b/src/components/map/groups/GridGroup.js
@@ -17,10 +17,10 @@ const GridGroup = () => (
<Group>
{HORIZONTAL_POINT_PAIRS.concat(VERTICAL_POINT_PAIRS).map((points, index) => (
<Line
+ key={index}
points={points}
stroke={GRID_COLOR}
strokeWidth={GRID_LINE_WIDTH_IN_PIXELS}
- key={index}
/>
))}
</Group>