From 0a6d5a5ef8b84612f69d0672aa31326ab17f58dd Mon Sep 17 00:00:00 2001 From: Jeroen Schweitzer Date: Wed, 10 Jun 2026 17:52:30 +0200 Subject: [PATCH] format conversation_view after the resolver extraction Co-Authored-By: Claude Opus 4.8 (1M context) --- lib/builtin/claude/src/conversation_view.dart | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/builtin/claude/src/conversation_view.dart b/lib/builtin/claude/src/conversation_view.dart index b4989c3c..d10f1ed2 100644 --- a/lib/builtin/claude/src/conversation_view.dart +++ b/lib/builtin/claude/src/conversation_view.dart @@ -395,8 +395,7 @@ void _openUrl(BuildContext context, String url) { /// file, or null if it doesn't name a real repo file (T-300). Delegates the /// (pure, testable) path logic to [resolveWorkspaceFilePath] with the open /// project root. -String? _resolveRepoFile(BuildContext context, String raw) => - resolveWorkspaceFilePath(ClideKernel.of(context).project.current?.path, raw); +String? _resolveRepoFile(BuildContext context, String raw) => resolveWorkspaceFilePath(ClideKernel.of(context).project.current?.path, raw); /// Resolve [raw] (a path-like token) against the workspace [root] to an absolute /// path, or null if it doesn't name a real file under the repo (T-300). The