style(charakter-erstellung): alle 20-Fragen-Abschnitte standardmäßig eingeklappt
All checks were successful
Deploy Dimension47 / deploy (push) Successful in 47s

Der Konzept-Abschnitt war als einziger initial geöffnet; jetzt starten alle
vier Abschnitte eingeklappt (Projektkonvention: einklappbare Kategorien sind
standardmäßig eingeklappt).

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-06-08 10:54:31 +02:00
parent afd4a77971
commit 7ce21b5b64

View File

@@ -467,7 +467,7 @@ export function CharacterCreationPage() {
<div className="space-y-3">
{QUESTION_PARTS.map((part, index) => (
<PartSection key={part.id} part={part} index={index} defaultOpen={index === 0} />
<PartSection key={part.id} part={part} index={index} defaultOpen={false} />
))}
</div>