From 00fff21034772b760ec015a5ccb72cc7eb8cea54 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 2 Jul 2026 13:42:21 +0000 Subject: [PATCH] chore: format with prettier [skip ci] --- frontend/src/renderer/lib/report-problem.test.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/frontend/src/renderer/lib/report-problem.test.ts b/frontend/src/renderer/lib/report-problem.test.ts index 9611a1dd9..c9af8eacb 100644 --- a/frontend/src/renderer/lib/report-problem.test.ts +++ b/frontend/src/renderer/lib/report-problem.test.ts @@ -85,9 +85,7 @@ describe("report problem drafts", () => { it("builds copy handoff destinations for GitHub, Discord, and email", () => { const github = new URL(reportProblemDestinationUrl(completeInput, diagnostics, "github")); - expect(`${github.origin}${github.pathname}`).toBe( - "https://github.com/AgentWrapper/agent-orchestrator/issues/new", - ); + expect(`${github.origin}${github.pathname}`).toBe("https://github.com/AgentWrapper/agent-orchestrator/issues/new"); expect(github.searchParams.get("title")).toBe("Terminal keeps reconnecting after daemon restart"); expect(github.searchParams.get("body")).toContain("[redacted-local-path]"); expect(github.searchParams.get("body")).toContain("[redacted-local-url]");