From a8cf04e7b1011a13ae518c9efea541c238f8b439 Mon Sep 17 00:00:00 2001 From: Capucine Gest Date: Tue, 2 Jun 2026 15:25:54 +0200 Subject: [PATCH] auto: sync 2026-06-02 15:25 --- components/CurrencyCard.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/components/CurrencyCard.tsx b/components/CurrencyCard.tsx index 2a8aa79..339cda7 100644 --- a/components/CurrencyCard.tsx +++ b/components/CurrencyCard.tsx @@ -363,13 +363,14 @@ export default function CurrencyCard({ currency, expectations, yields, sentiment { const isQoQ = (inds?.cpiCoreMoM as (Ind & { isQoQ?: boolean }) | null)?.isQoQ; - return isQoQ ? "Core CPI QoQ (=Core Inflation Rate MoM)" : "Core CPI MoM (=Core Inflation Rate MoM)"; + return isQoQ ? "Core CPI QoQ" : "Core CPI MoM"; })()} ind={inds?.cpiCoreMoM ?? null} unit="%" tooltip={(() => { const raw = (inds?.cpiCoreMoM as (Ind & { _raw?: { last: number; prev: number; refMonth: string } }) | null)?._raw; - return raw ? `Index: last=${raw.last} prev=${raw.prev} ref=${raw.refMonth}` : null; + const base = "=Core Inflation Rate MoM"; + return raw ? `${base} — Index: last=${raw.last} prev=${raw.prev} ref=${raw.refMonth}` : base; })()} />