@continuedev/continuous-ai 1.0.2 → 1.0.3

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@continuedev/continuous-ai",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "CLI tool for interacting with Continue agent checks on pull requests",
5
5
  "type": "module",
6
6
  "bin": {
@@ -20,7 +20,7 @@ export function formatSessionsTable(sessions, summary) {
20
20
 
21
21
  // Table rows
22
22
  for (const session of sessions) {
23
- const sessionId = session.shortId || session.id.substring(0, 8);
23
+ const sessionId = session.id.substring(0, 8);
24
24
  const status = formatStatus(session.status);
25
25
  const updated = formatRelativeTime(session.updatedAt);
26
26