diff --git a/pitch-deck/components/slides/FinanzplanSlide.tsx b/pitch-deck/components/slides/FinanzplanSlide.tsx index 5823d12..67aca86 100644 --- a/pitch-deck/components/slides/FinanzplanSlide.tsx +++ b/pitch-deck/components/slides/FinanzplanSlide.tsx @@ -518,7 +518,7 @@ export default function FinanzplanSlide({ lang, investorId, preferredScenarioId, const isEditable = row.is_editable // Balance rows show Dec value, flow rows show annual sum const isBalanceRow = label.includes('Kontostand') || label === 'LIQUIDITÄT' || label === 'LIQUIDITAET' - const isUnitPrice = (row as Record).section === 'unit_cost' || label.includes('Einkaufspreis') + const isUnitPrice = (row as Record).section === 'unit_cost' || (row as Record).section === 'einkauf' || label.includes('Einkaufspreis') let annual = 0 if (isUnitPrice) {