summaryrefslogtreecommitdiff
path: root/src/components/map/groups/GridGroup.js
diff options
context:
space:
mode:
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>