We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f243da commit 033e594Copy full SHA for 033e594
cli/src/components/tools/write-todos.tsx
@@ -41,7 +41,7 @@ const WriteTodosItem = ({ todos }: WriteTodosItemProps) => {
41
<text style={{ wrapMode: 'word' }}>
42
{todo.completed ? (
43
<>
44
- <span fg={theme.success}>✓ </span>
+ <span fg={theme.success}>✓ </span>
45
<span
46
fg={theme.muted}
47
attributes={TextAttributes.STRIKETHROUGH}
@@ -51,7 +51,7 @@ const WriteTodosItem = ({ todos }: WriteTodosItemProps) => {
51
</>
52
) : (
53
54
- <span fg={theme.foreground}>☐ </span>
+ <span fg={theme.foreground}>☐ </span>
55
<span fg={theme.foreground}>{todo.task}</span>
56
57
)}
0 commit comments