From 0712d18824c17ffa702415a17e23040f528e74ec Mon Sep 17 00:00:00 2001 From: Benjamin Admin Date: Fri, 17 Apr 2026 00:27:01 +0200 Subject: [PATCH] fix(pitch-deck): remove assumption sliders from Financials slide Investors should not be able to modify business case assumptions. Questions should be directed to founders via the AI chat agent. Scenario switcher is kept for viewing different scenarios. Co-Authored-By: Claude Opus 4.6 (1M context) --- .../components/slides/FinancialsSlide.tsx | 49 ++----------------- 1 file changed, 5 insertions(+), 44 deletions(-) diff --git a/pitch-deck/components/slides/FinancialsSlide.tsx b/pitch-deck/components/slides/FinancialsSlide.tsx index fec6408..29fca58 100644 --- a/pitch-deck/components/slides/FinancialsSlide.tsx +++ b/pitch-deck/components/slides/FinancialsSlide.tsx @@ -247,51 +247,12 @@ export default function FinancialsSlide({ lang, investorId }: FinancialsSlidePro - {/* Assumption Sliders */} - -
-

- {i.financials.adjustAssumptions} -

- {fm.activeScenario && ( - { - if (fm.activeScenarioId) { - fm.updateAssumption(fm.activeScenarioId, key, value) - } - }} - lang={lang} - /> - )} - {fm.computing && ( -
-
- {de ? 'Berechne...' : 'Computing...'} -
- )} - - {/* Snapshot status + reset */} - {investorId && ( -
- - {fm.snapshotStatus === 'saving' && (de ? 'Speichere...' : 'Saving...')} - {fm.snapshotStatus === 'saved' && (de ? 'Ihre Änderungen gespeichert' : 'Your changes saved')} - {fm.snapshotStatus === 'restored' && (de ? 'Ihre Werte geladen' : 'Your values restored')} - {fm.snapshotStatus === 'default' && (de ? 'Standardwerte' : 'Defaults')} - - {fm.snapshotStatus !== 'default' && ( - - )} -
- )} + {fm.computing && ( +
+
+ {de ? 'Berechne...' : 'Computing...'}
- + )}