always render locations (#224)

This commit is contained in:
Lachlan Kermode
2022-03-01 11:43:16 -05:00
committed by GitHub
parent 3d8ec706ed
commit b881669031

View File

@@ -108,9 +108,7 @@ function MapEvents({
transform={`translate(${x}, ${y})`}
onClick={(e) => handleEventSelect(e, location)}
>
{features.COLOR_BY_ASSOCIATION
? renderLocationSlicesByAssociation(location)
: null}
{renderLocationSlicesByAssociation(location)}
{extraRender ? extraRender() : null}
{isSelected ? null : renderBorder()}
</g>