Fix map controls divider

This commit is contained in:
Mitchell McCaffrey 2020-04-26 19:03:57 +10:00
parent b691842a21
commit 506f0287ab

View File

@ -313,7 +313,7 @@ function MapControls({
{sections.map((section, index) => (
<Fragment key={section.id}>
{section.component}
{index !== sections.length - 1 && <Divider />}
{index !== sections.length - 1 && divider}
</Fragment>
))}
</Box>