diff --git a/interface/src/app/status/Status.tsx b/interface/src/app/status/Status.tsx index e8a6447d5..97613c837 100644 --- a/interface/src/app/status/Status.tsx +++ b/interface/src/app/status/Status.tsx @@ -139,9 +139,12 @@ const SystemStatus = () => { case NTPSyncStatus.NTP_INACTIVE: return LL.INACTIVE(0); case NTPSyncStatus.NTP_ACTIVE: - return LL.ACTIVE() + (data.ntp_time !== undefined) - ? ' (' + formatDateTime(data.ntp_time) + ')' - : ''; + return ( + LL.ACTIVE() + + (data.ntp_time !== undefined + ? ' (' + formatDateTime(data.ntp_time) + ')' + : '') + ); default: return LL.UNKNOWN(); }