From 0ee119ea8f541ee3b7cce28860b0ece9dd0dbd4f Mon Sep 17 00:00:00 2001 From: dikapratana Date: Fri, 23 Jan 2026 15:35:06 +0700 Subject: [PATCH] add empty style --- src/features/home/sections/devices.tsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/features/home/sections/devices.tsx b/src/features/home/sections/devices.tsx index 6f8b73a..998c946 100644 --- a/src/features/home/sections/devices.tsx +++ b/src/features/home/sections/devices.tsx @@ -190,6 +190,12 @@ export default function Devices() { )} ))} + + {!isLoading && data?.length === 0 ? ( +
+ No devices found. Please add a device. +
+ ) : null}