Remove Todo Icon (#12190)

This commit is contained in:
Tommaso Sciortino
2025-10-28 20:48:38 -07:00
committed by GitHub
parent 706834ecd3
commit 5d87a7f9c7
2 changed files with 8 additions and 8 deletions

View File

@@ -34,7 +34,7 @@ const TodoTitleDisplay: React.FC<{ todos: TodoList }> = ({ todos }) => {
return (
<Box flexDirection="row" columnGap={2} height={1}>
<Text color={theme.text.primary} bold aria-label="Todo list">
📝 Todo
Todo
</Text>
<Text color={theme.text.secondary}>{score} (ctrl+t to toggle)</Text>
</Box>

View File

@@ -2,7 +2,7 @@
exports[`<TodoTray /> > 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[`<TodoTray /> > renders a todo list with long descriptions that wrap whe
exports[`<TodoTray /> > 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[`<TodoTray /> > renders null when no todos are in the history 1`] = `""`;
@@ -26,7 +26,7 @@ exports[`<TodoTray /> > renders null when todo list is empty 2`] = `""`;
exports[`<TodoTray /> > 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[`<TodoTray /> > renders the most recent todo list when multiple write_to
exports[`<TodoTray /> > 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[`<TodoTray /> > renders when todos exist and one is in progress 1`] = `
exports[`<TodoTray /> > 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[`<TodoTray /> > 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[`<TodoTray /> > renders when todos exist but none are in progress 1`] =
exports[`<TodoTray /> > renders when todos exist but none are in progress 2`] = `
"────────────────────────────────────────────────────────────────────────────────────────────────────
📝 Todo 1/2 (ctrl+t to toggle)"
Todo 1/2 (ctrl+t to toggle)"
`;