Skip to content
Snippets Groups Projects
Commit 11ff2276 authored by Paul Kaplan's avatar Paul Kaplan
Browse files

Prevent react recycling components causing safari render bug

parent c91c18e1
No related branches found
No related tags found
No related merge requests found
......@@ -30,7 +30,7 @@ const ScanningStep = props => (
</div>
</div>
) : (
<Box className={styles.deviceTilePane}>
<div className={styles.deviceTilePane}>
{props.deviceList.map(device =>
(<DeviceTile
key={device.peripheralId}
......@@ -41,7 +41,7 @@ const ScanningStep = props => (
onConnecting={props.onConnecting}
/>)
)}
</Box>
</div>
)
) : (
<Box className={styles.instructions}>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment