Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions apps/desktop/src/updates/DesktopUpdates.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ function makeHarness(options: UpdatesHarnessOptions = {}) {
setDesktopName: () => Effect.void,
setDockIcon: () => Effect.void,
appendCommandLineSwitch: () => Effect.void,
onBeforeQuitForUpdate: () => Effect.void,
on: () => Effect.void as any,
} satisfies ElectronApp.ElectronApp["Service"]);

Expand Down
3 changes: 2 additions & 1 deletion apps/web/src/components/Sidebar.logic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ export const THREAD_JUMP_HINT_SHOW_DELAY_MS = 100;
// nearby thread usually reuses an already-hot subscription.
export const SIDEBAR_THREAD_PREWARM_LIMIT = 10;
// Settled-tail paging: recent history is the common lookup; the deep tail
// stays behind an explicit Show more. Shared by SidebarV2 and the board.
// stays behind an explicit Show more. Shared by SidebarV2, classic Recent
// (hide-settled shelf), and the board.
export const SETTLED_TAIL_INITIAL_COUNT = 10;
export const SETTLED_TAIL_PAGE_COUNT = 25;
export type SidebarNewThreadEnvMode = "local" | "worktree";
Expand Down
Loading
Loading