↑ Watch the nav aboveThe fallback nav and the resolved nav both render the same lane links. That mirrors the original project shape more closely: the difference here is whether this lane's Home link keeps default prefetch or forces a fresh fetch on click.

control lane · prefetch={false}

Control lane

This lane disables prefetch on the duplicated Home link so the return navigation fetches on click instead of reusing a prefetched payload.

Repro flow: create an item, open it, add one comment, then click the duplicated Home link in the top nav.

Why this lane exists

The list page is cached with tagged data. The detail page mutates comments and calls updateTag("items"). The thing under test is whether the nav's Home link returns using a stale prefetched payload or waits for fresh RSC data.

Compare against the repro lane

Create new item

This writes into the same shared store used by both lanes.

Items (2)

Shared data, different nav behavior