From 8d5c5e39c9eb477aa4602d411889c44c4e187cc2 Mon Sep 17 00:00:00 2001 From: Scott Idem Date: Wed, 13 May 2026 12:50:25 -0400 Subject: [PATCH] fix(launcher): guard health device metadata --- .../(launcher)/cfg_components/launcher_cfg_health.svelte | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_health.svelte b/src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_health.svelte index 2c84c845..5aeb4c40 100644 --- a/src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_health.svelte +++ b/src/routes/events/[event_id]/(launcher)/cfg_components/launcher_cfg_health.svelte @@ -146,19 +146,19 @@ function get_usage_color(pct: number) {
Hostname: {$ae_loc.native_device.info_hostname || '...'} + >{$ae_loc.native_device?.info_hostname || '...'}
IP Addresses: {$ae_loc.native_device.info_ip_list || '...'} + >{$ae_loc.native_device?.info_ip_list || '...'}
Raw Device JSON
-                    {JSON.stringify($ae_loc.native_device, null, 2)}
+                    {JSON.stringify($ae_loc.native_device ?? {}, null, 2)}