ccmanager 2.4.0 → 2.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -10,7 +10,6 @@ import Configuration from './Configuration.js';
10
10
  import PresetSelector from './PresetSelector.js';
11
11
  import { globalSessionOrchestrator } from '../services/globalSessionOrchestrator.js';
12
12
  import { WorktreeService } from '../services/worktreeService.js';
13
- import { shortcutManager } from '../services/shortcutManager.js';
14
13
  import { configurationManager } from '../services/configurationManager.js';
15
14
  import { ENV_VARS } from '../constants/env.js';
16
15
  import { MULTI_PROJECT_ERRORS } from '../constants/error.js';
@@ -264,12 +263,7 @@ const App = ({ devcontainerConfig, multiProject }) => {
264
263
  }
265
264
  if (view === 'session' && activeSession) {
266
265
  return (React.createElement(Box, { flexDirection: "column" },
267
- React.createElement(Session, { key: activeSession.id, session: activeSession, sessionManager: sessionManager, onReturnToMenu: handleReturnToMenu }),
268
- React.createElement(Box, { marginTop: 1 },
269
- React.createElement(Text, { dimColor: true },
270
- "Press ",
271
- shortcutManager.getShortcutDisplay('returnToMenu'),
272
- " to return to menu"))));
266
+ React.createElement(Session, { key: activeSession.id, session: activeSession, sessionManager: sessionManager, onReturnToMenu: handleReturnToMenu })));
273
267
  }
274
268
  if (view === 'new-worktree') {
275
269
  return (React.createElement(Box, { flexDirection: "column" },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ccmanager",
3
- "version": "2.4.0",
3
+ "version": "2.4.1",
4
4
  "description": "TUI application for managing multiple Claude Code sessions across Git worktrees",
5
5
  "license": "MIT",
6
6
  "author": "Kodai Kabasawa",