From c1a5befe8f675c6abfe26a492a006929b7468e63 Mon Sep 17 00:00:00 2001 From: Pierre-Olivier Mercier Date: Thu, 30 Oct 2025 14:06:28 +0700 Subject: [PATCH] Report BIMI issues --- web/src/lib/components/SummaryCard.svelte | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/web/src/lib/components/SummaryCard.svelte b/web/src/lib/components/SummaryCard.svelte index ffce5ba..1267f8b 100644 --- a/web/src/lib/components/SummaryCard.svelte +++ b/web/src/lib/components/SummaryCard.svelte @@ -323,6 +323,13 @@ }); if (bimiResult.details && bimiResult.details.indexOf("declined") == 0) { segments.push({ text: " declined to participate" }); + } else if (bimiResult?.result !== "fail") { + segments.push({ text: " but" }); + segments.push({ + text: "has issues", + highlight: { color: "danger", bold: true }, + link: "#authentication-bimi", + }); } else { segments.push({ text: " for brand indicator display" }); }