From ebb38f1434f381a0992bddb0f80542471f623022 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ma=C3=ABl=20Gangloff?= Date: Thu, 11 Dec 2025 18:06:11 +0100 Subject: [PATCH] fix: estimated removal date in the timeline --- assets/components/search/EventTimeline.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/components/search/EventTimeline.tsx b/assets/components/search/EventTimeline.tsx index ef85c81..346ed4b 100644 --- a/assets/components/search/EventTimeline.tsx +++ b/assets/components/search/EventTimeline.tsx @@ -33,7 +33,7 @@ function getWhoisRemoveTimelineEvent(whoisRemoveDateEstimate: Date, withRenewalP return { date: whoisRemoveDateEstimate, - color: withRenewalPeriod ? 'yellow' : 'grey', + color: (withRenewalPeriod === undefined || withRenewalPeriod) ? 'yellow' : 'grey', dot: , pending: true, ...text