diff --git a/interface/src/app/main/Customizations.tsx b/interface/src/app/main/Customizations.tsx
index 99d042732..d975e6442 100644
--- a/interface/src/app/main/Customizations.tsx
+++ b/interface/src/app/main/Customizations.tsx
@@ -489,7 +489,8 @@ const Customizations = () => {
{devices.devices.map(
(device: Device) =>
- device.id < 90 && (
+ device.id < 90 &&
+ device.e !== 0 && (
diff --git a/interface/src/app/main/Devices.tsx b/interface/src/app/main/Devices.tsx
index 3b74cf11c..9916d2ea7 100644
--- a/interface/src/app/main/Devices.tsx
+++ b/interface/src/app/main/Devices.tsx
@@ -558,16 +558,26 @@ const Devices = memo(() => {
)}
{tableList.map((device: Device) => (
-
+
|
- {device.n}
-
- ({device.e})
+
+ {device.n}
+ {device.e !== 0 && (
+
+ ({device.e})
+
+ )}
+ |
+
+
+ {device.tn}
+
|
- {device.tn} |
))}