From 625905fc29ec3fd82a0f972f9fef53ed5d41b7a3 Mon Sep 17 00:00:00 2001 From: Andre Padez Date: Wed, 25 Feb 2026 02:20:49 +0000 Subject: [PATCH] task runner less verbose --- .../FileBrowser/FileBrowserApp/components/TaskRunnerModal.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/workspaces/officerdev/src/apps/FileBrowser/FileBrowserApp/components/TaskRunnerModal.tsx b/src/workspaces/officerdev/src/apps/FileBrowser/FileBrowserApp/components/TaskRunnerModal.tsx index 0543924d..7ea3ec89 100644 --- a/src/workspaces/officerdev/src/apps/FileBrowser/FileBrowserApp/components/TaskRunnerModal.tsx +++ b/src/workspaces/officerdev/src/apps/FileBrowser/FileBrowserApp/components/TaskRunnerModal.tsx @@ -198,8 +198,8 @@ export const TaskRunnerModal = ({ open, onOpenChange, task, entryName, entryFull const entryRef = entryFullPath ?? entryName; const defaultInput = promptOverride ?? (entryRef && entryType - ? `Read the task instructions at ${task.filePath} and execute them on the ${entryType}: ${entryRef}\n\nBe verbose — explain each step you take and what the result was.` - : `Read the task instructions at ${task.filePath} and execute them\n\nBe verbose — explain each step you take and what the result was.`); + ? `Read the task instructions at ${task.filePath} and execute them on the ${entryType}: ${entryRef}` + : `Read the task instructions at ${task.filePath} and execute them`); const taskInfo: TaskInfo = { taskName: task.name, taskDirName: task.dirName, entryName: entryName ?? '', entryType: entryType ?? 'file' }; return (