Commit 40e19efb85dc
Changed files (1)
dots
pi
agent
extensions
org-todos
dots/pi/agent/extensions/org-todos/index.ts
@@ -279,8 +279,8 @@ export default function (pi: ExtensionAPI) {
text = text.replace(/\[DONE\]/g, theme.bold(theme.fg("success", "[DONE]"))); // Green bold - completed
text = text.replace(/\[CANX\]/g, theme.bold(theme.fg("error", "[CANX]"))); // Red bold - cancelled
- // Wrap in Box with background for visual separation
- const box = new Box(1, 1, (t) => theme.bg("customMessageBg", t));
+ // Wrap in Box with subtle padding for visual separation
+ const box = new Box(1, 1);
box.addChild(new Text(text, 0, 0));
return box;
});