diff --git a/packages/cli/src/ui/components/messages/Todo.tsx b/packages/cli/src/ui/components/messages/Todo.tsx index a7d630a93d..73ba528972 100644 --- a/packages/cli/src/ui/components/messages/Todo.tsx +++ b/packages/cli/src/ui/components/messages/Todo.tsx @@ -34,7 +34,7 @@ const TodoTitleDisplay: React.FC<{ todos: TodoList }> = ({ todos }) => { return ( - πŸ“ Todo + Todo {score} (ctrl+t to toggle) diff --git a/packages/cli/src/ui/components/messages/__snapshots__/Todo.test.tsx.snap b/packages/cli/src/ui/components/messages/__snapshots__/Todo.test.tsx.snap index a7001a4eda..873bf4d57b 100644 --- a/packages/cli/src/ui/components/messages/__snapshots__/Todo.test.tsx.snap +++ b/packages/cli/src/ui/components/messages/__snapshots__/Todo.test.tsx.snap @@ -2,7 +2,7 @@ exports[` > renders a todo list with long descriptions that wrap when full view is on 1`] = ` "────────────────────────────────────────────────── - πŸ“ Todo 1/2 (ctrl+t to toggle) + Todo 1/2 (ctrl+t to toggle) Β» This is a very long description for a pending task that should wrap around multiple lines @@ -13,7 +13,7 @@ exports[` > renders a todo list with long descriptions that wrap whe exports[` > renders a todo list with long descriptions that wrap when full view is on 2`] = ` "────────────────────────────────────────────────── - πŸ“ Todo 1/2 (ctrl+t to toggle) Β» This is a ver…" + Todo 1/2 (ctrl+t to toggle) Β» This is a very l…" `; exports[` > renders null when no todos are in the history 1`] = `""`; @@ -26,7 +26,7 @@ exports[` > renders null when todo list is empty 2`] = `""`; exports[` > renders the most recent todo list when multiple write_todos calls are in history 1`] = ` "──────────────────────────────────────────────────────────────────────────────────────────────────── - πŸ“ Todo 0/2 (ctrl+t to toggle) + Todo 0/2 (ctrl+t to toggle) ☐ Newer Task 1 Β» Newer Task 2" @@ -34,7 +34,7 @@ exports[` > renders the most recent todo list when multiple write_to exports[` > renders when todos exist and one is in progress 1`] = ` "──────────────────────────────────────────────────────────────────────────────────────────────────── - πŸ“ Todo 1/3 (ctrl+t to toggle) + Todo 1/3 (ctrl+t to toggle) ☐ Pending Task Β» Task 2 @@ -44,12 +44,12 @@ exports[` > renders when todos exist and one is in progress 1`] = ` exports[` > renders when todos exist and one is in progress 2`] = ` "──────────────────────────────────────────────────────────────────────────────────────────────────── - πŸ“ Todo 1/3 (ctrl+t to toggle) Β» Task 2" + Todo 1/3 (ctrl+t to toggle) Β» Task 2" `; exports[` > renders when todos exist but none are in progress 1`] = ` "──────────────────────────────────────────────────────────────────────────────────────────────────── - πŸ“ Todo 1/2 (ctrl+t to toggle) + Todo 1/2 (ctrl+t to toggle) ☐ Pending Task βœ— In Progress Task @@ -58,5 +58,5 @@ exports[` > renders when todos exist but none are in progress 1`] = exports[` > renders when todos exist but none are in progress 2`] = ` "──────────────────────────────────────────────────────────────────────────────────────────────────── - πŸ“ Todo 1/2 (ctrl+t to toggle)" + Todo 1/2 (ctrl+t to toggle)" `;