Fix key in token status

This commit is contained in:
Mitchell McCaffrey 2020-05-21 21:31:44 +10:00
parent 07a5d95e4c
commit 8b83fb8c67

View File

@ -8,6 +8,7 @@ function TokenStatus({ tokenState, width, height }) {
<Group x={width} y={height} offsetX={width / 2} offsetY={height / 2}>
{tokenState.statuses.map((status, index) => (
<Circle
key={status}
width={width}
height={height}
stroke={colors[status]}