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-zeigarnik-show-incomplete.md
1---2title: Show Incomplete State to Drive Completion3impact: MEDIUM4tags: ux, zeigarnik, incomplete, engagement5---67## Show Incomplete State to Drive Completion89People remember incomplete tasks better than completed ones. Use this to drive engagement.1011**Incorrect (no indication of incomplete profile):**1213```tsx14function Dashboard() {15return <DashboardContent />;16}17```1819**Correct (incomplete state visible):**2021```tsx22function Dashboard({ profile }) {23return (24<div>25{!profile.isComplete && (26<Banner>27Complete your profile — {profile.completionPercent}% done28</Banner>29)}30<DashboardContent />31</div>32);33}34```3536Reference: [Zeigarnik Effect](https://lawsofux.com/zeigarnik-effect/)37