All Docs
FeaturesSaaS FactoryUpdated February 19, 2026

Fixing the Hidden Settings Link: A Small Change with a Big Impact on Navigation

Fixing the Hidden Settings Link: A Small Change with a Big Impact on Navigation

Release: v1.0.53 · Category: UI/UX


Good navigation is invisible. You click where you expect something to be, and it's there. Bad navigation is the opposite — you know something exists, but you can't quite remember where it's hiding. In v1.0.53, we fixed one of those small-but-frustrating navigation rough edges: the buried Settings link in the product sidebar.

The Problem: A Section Built for One

The product sidebar had a collapsible group labelled "Product". Inside it? Exactly one link: Settings.

That's a full collapsible section — chevron, section label, indented padding, collapse animation — serving a single navigation item. It's the equivalent of putting one item on a dropdown menu that didn't need to be a dropdown.

This pattern created real usability problems:

  • Wasted vertical space. A collapsible group has visual overhead. When you're only holding one link, that overhead isn't justified.
  • Confusing label. The section was called "Product", but the entire sidebar is already scoped to a product. The label didn't tell users anything meaningful.
  • Discoverability failure. Because the section defaulted to collapsed, users had to know to look for Settings inside an expandable group. Settings is one of the most commonly accessed destinations in any SaaS product — making users hunt for it is a UX anti-pattern.

The Fix: Pin Settings Where Users Expect It

The solution follows a well-established SaaS sidebar convention: Settings belongs in the footer of the sidebar, pinned and always visible.

Starting in v1.0.53, the Settings link is rendered as a persistent footer item at the bottom of the sidebar content area, sitting just above the "Back to Products" link. No expanding required. No section label needed. It's simply always there.

┌─────────────────────────┐
│  ▣  Overview            │
│  ▣  Features            │
│  ▣  Releases            │
│  ▣  Analytics           │
│                         │
│  ─────────────────────  │
│  ⚙  Settings            │  ← always visible, pinned footer
│  ← Back to Products     │
└─────────────────────────┘

Why This Matters

Small navigation decisions compound quickly. Every time a user couldn't find Settings, they either gave up, clicked around unnecessarily, or formed a slightly worse impression of the product. Multiply that by every user, every session, and the friction adds up.

Pinning Settings to the sidebar footer:

  • Eliminates the discovery problem — it's visible on first glance.
  • Removes meaningless UI chrome — no collapsible group, no redundant label.
  • Aligns with user expectations — this is how Vercel, Linear, Notion, and most modern SaaS tools handle it.

The best UI fixes are the ones that make you wonder why it wasn't always that way.


This change was applied to src/components/product-sidebar.tsx and ships in v1.0.53.