From 5454e7dd1647015af29b64e7d8143d4aff6139fd Mon Sep 17 00:00:00 2001 From: proddy Date: Tue, 18 Nov 2025 21:37:55 +0100 Subject: [PATCH] warning message formatting so its same as Dashboard --- interface/src/app/main/Devices.tsx | 30 ++++++++++++++---------------- 1 file changed, 14 insertions(+), 16 deletions(-) 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 ? ( + + ) : ( + + { )}
- )} -
-
+
+
+ )} );