fix: remove scenario dropdown from FinanzplanSlide
All checks were successful
Build pitch-deck / build-push-deploy (push) Successful in 1m2s
CI / go-lint (push) Has been skipped
CI / python-lint (push) Has been skipped
CI / nodejs-lint (push) Has been skipped
CI / test-go-consent (push) Successful in 28s
CI / test-python-voice (push) Successful in 29s
CI / test-bqas (push) Successful in 26s

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Sharang Parnerkar
2026-04-17 11:04:26 +02:00
parent 11fa490599
commit e37fd3bbe4

View File

@@ -193,17 +193,6 @@ export default function FinanzplanSlide({ lang, investorId, preferredScenarioId
</button>
))}
<div className="flex-1" />
{scenarios.length > 1 && (
<select
value={selectedScenarioId}
onChange={e => setSelectedScenarioId(e.target.value)}
className="text-[10px] bg-white/[0.06] text-white/60 border border-white/10 rounded-lg px-2 py-1.5 mr-2"
>
{scenarios.map(s => (
<option key={s.id} value={s.id}>{s.name}{s.is_default ? ' ★' : ''}</option>
))}
</select>
)}
<button
onClick={handleCompute}
disabled={computing}