Skip to content
This repository was archived by the owner on Jun 8, 2026. It is now read-only.

Commit 6480bb0

Browse files
committed
bump app version + fix lint errors
1 parent 2caa8df commit 6480bb0

3 files changed

Lines changed: 2 additions & 3 deletions

File tree

apps/desktop/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "desktop",
3-
"version": "0.8.8",
3+
"version": "0.8.9",
44
"description": "ClosedLoop Desktop",
55
"author": "ClosedLoop AI <support@closedloop.ai>",
66
"private": true,

apps/desktop/src/server/operations/symphony-chat-history.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,6 @@ export function registerSymphonyChatHistoryRoutes(
198198

199199
const historyPath = getChatHistoryPath(ticketId, expandedRepoPath, provider);
200200
const historyWritePath = getChatHistoryWritePath(ticketId, expandedRepoPath, provider);
201-
const workDir = path.dirname(historyPath);
202201
// Both roots for dual-copy cleanup
203202
const worktreeDir = resolveWorktreeDir(expandedRepoPath, ticketId);
204203
const workDirs = [

apps/desktop/src/server/operations/symphony-sessions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import fs from "node:fs/promises";
33
import path from "node:path";
44
import type { OperationDispatcher, OperationRequestContext } from "../operation-dispatcher.js";
55
import { DirectoryNotAllowedError, assertPathAllowed } from "../security.js";
6-
import { VALID_PROVIDERS, chatHistoryFilename, expandHome, findFirstExisting } from "./symphony-utils.js";
6+
import { VALID_PROVIDERS, chatHistoryFilename, expandHome } from "./symphony-utils.js";
77

88
type ActiveSession = {
99
ticketId: string;

0 commit comments

Comments
 (0)