Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/ui/SessionsApp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ import { ConnectApp } from './ConnectApp'
const SIDEBAR_POLL_MS = 5_000
// The nav clock driving the "12s" age tags.
const AGE_TICK_MS = 5_000
const NAV_NEW_LABEL = '+ New session'
const NAV_NEW_LABEL = '+ New sesssion'

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"sesssion" is misspelled in the pinned picker label; revert to "+ New session". This is the only change in the PR and it is user-visible on every session picker render (src/ui/SessionsApp.tsx:666, :670).

Pressing esc renders the nav row from this constant, so the picker shows "+ New sesssion" / "▶ New sesssion". It also fails CI as intended: test/screenshot.test.ts:120 asserts toContain('▶ New session'), and both snapshots in test/snapshots/screenshot.test.ts.snap (lines 46, 71) still hold the correct spelling.

Suggested change
const NAV_NEW_LABEL = '+ New sesssion'
const NAV_NEW_LABEL = '+ New session'

// The header title pinned to the left edge, and its width — the meta line on
// the right budgets itself against what's left of the row.
const HEADER_TITLE = 'ellipsis.dev'
Expand Down
Loading