From 11ff2276723fb357b94784e77e60155e9a58ded3 Mon Sep 17 00:00:00 2001 From: Paul Kaplan <pkaplan@media.mit.edu> Date: Thu, 19 Jul 2018 08:57:58 -0400 Subject: [PATCH] Prevent react recycling components causing safari render bug --- src/components/connection-modal/scanning-step.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/connection-modal/scanning-step.jsx b/src/components/connection-modal/scanning-step.jsx index 1728e1fd5..0b0b4999d 100644 --- a/src/components/connection-modal/scanning-step.jsx +++ b/src/components/connection-modal/scanning-step.jsx @@ -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}> -- GitLab