From f0bae12029ef399f0f58488856d76ae734614b03 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 cfac2a7..7666fcd 100644 --- a/web/src/lib/components/SummaryCard.svelte +++ b/web/src/lib/components/SummaryCard.svelte @@ -331,6 +331,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" }); }