Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Living wiki of UI design patterns and best practices built with Fumadocs, Next.js, and Base UI components.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
rules/ux-hicks-minimize-choices.md
1---2title: Minimize Choices to Reduce Decision Time3impact: HIGH4tags: ux, hicks, choices, cognitive-load5---67## Minimize Choices to Reduce Decision Time89Decision time increases logarithmically with the number of choices. Use progressive disclosure.1011**Incorrect (all options at once):**1213```tsx14function Settings() {15return (16<div>17{allSettings.map(setting => (18<SettingRow key={setting.id} {...setting} />19))}20</div>21);22}23```2425**Correct (progressive disclosure):**2627```tsx28function Settings() {29return (30<div>31{commonSettings.map(setting => (32<SettingRow key={setting.id} {...setting} />33))}34<details>35<summary>Advanced</summary>36{advancedSettings.map(setting => (37<SettingRow key={setting.id} {...setting} />38))}39</details>40</div>41);42}43```4445Reference: Hick, W. E. (1952). On the rate of gain of information.46