fix(coding-agent): fix packaged session selector import

This commit is contained in:
Mario Zechner
2026-04-27 21:44:00 +02:00
parent bd55c7a728
commit 2c08775ee7
2 changed files with 5 additions and 1 deletions

View File

@@ -2,6 +2,10 @@
## [Unreleased]
### Fixed
- Fixed packaged `pi` startup failing because the session selector imported a source-only utility path.
## [0.70.3] - 2026-04-27
### New Features

View File

@@ -13,9 +13,9 @@ import {
truncateToWidth,
visibleWidth,
} from "@mariozechner/pi-tui";
import { canonicalizePath as _canonicalizePath } from "../../../../src/utils/paths.js";
import { KeybindingsManager } from "../../../core/keybindings.js";
import type { SessionInfo, SessionListProgress } from "../../../core/session-manager.js";
import { canonicalizePath as _canonicalizePath } from "../../../utils/paths.js";
import { theme } from "../theme/theme.js";
import { DynamicBorder } from "./dynamic-border.js";
import { keyHint, keyText } from "./keybinding-hints.js";