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 (