From c97ee22e66ee7dc79be7393abb034cab240944f3 Mon Sep 17 00:00:00 2001 From: Sajan Date: Wed, 12 Nov 2025 10:54:55 -0600 Subject: [PATCH] Move status validation inside the block --- client/src/Components/v1/Host/index.jsx | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/client/src/Components/v1/Host/index.jsx b/client/src/Components/v1/Host/index.jsx index 7b4de7610..935224994 100644 --- a/client/src/Components/v1/Host/index.jsx +++ b/client/src/Components/v1/Host/index.jsx @@ -34,7 +34,7 @@ const Host = ({ url, title, percentageColor, percentage, showURL, status }) => { {title} - {percentageColor && percentage && status && ( + {percentageColor && percentage && ( <> { > {percentage}% - + {status && ( + + )} )}