From 0f3219ec2c4876d7387bf08a44483f051d560876 Mon Sep 17 00:00:00 2001 From: Joe Grinstead Date: Thu, 20 Nov 2025 10:32:13 -0500 Subject: [PATCH] Fix: Render the softwareAgent name instead of [object Object] --- .../components/DetailedInfo/ProcessSection/AISubSection.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/verify/components/DetailedInfo/ProcessSection/AISubSection.svelte b/src/routes/verify/components/DetailedInfo/ProcessSection/AISubSection.svelte index dd69ea15e..7571446a7 100644 --- a/src/routes/verify/components/DetailedInfo/ProcessSection/AISubSection.svelte +++ b/src/routes/verify/components/DetailedInfo/ProcessSection/AISubSection.svelte @@ -17,7 +17,7 @@ {#each softwareAgents as softwareAgent} - {softwareAgent} + {softwareAgent.name} {/each}