Skip to content

Commit 8e13fd3

Browse files
committed
fix virus chic
1 parent b6d33e8 commit 8e13fd3

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/InteractionLayer.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,7 @@ class InteractionLayer extends React.Component {
1515
{voronoiCells.map((d, i) => (
1616
<path
1717
key={`voronoi-${i}`}
18-
fillOpacity={0.5}
19-
fill="red"
20-
stroke="red"
18+
fillOpacity={0}
2119
onMouseEnter={() => onHover(points[i])}
2220
onMouseLeave={() => onHover()}
2321
d={`M${d.map(p => p.join(',')).join('L')}Z`}

0 commit comments

Comments
 (0)