diff --git a/pitch-deck/components/slides/FinanzplanSlide.tsx b/pitch-deck/components/slides/FinanzplanSlide.tsx index 80b3811..7c42d55 100644 --- a/pitch-deck/components/slides/FinanzplanSlide.tsx +++ b/pitch-deck/components/slides/FinanzplanSlide.tsx @@ -81,7 +81,7 @@ function LabelWithTooltip({ label }: { label: string }) { } function getValues(row: SheetRow): Record { - return row.values || row.values_total || row.values_brutto || {} + return row.values || row.values_total || row.values_brutto || (row as Record).values_invest as Record || {} } function formatCell(v: number | undefined): string {