diff --git a/interface/src/app/main/Devices.tsx b/interface/src/app/main/Devices.tsx index 84c2b1be8..f96adfb89 100644 --- a/interface/src/app/main/Devices.tsx +++ b/interface/src/app/main/Devices.tsx @@ -533,19 +533,17 @@ const Devices = memo(() => { const renderCoreData = () => ( <> - - - {!coreData.connected && ( - - )} - - {coreData.connected && ( + {!coreData.connected ? ( + + ) : ( + + { )}
- )} -
-
+
+
+ )} );