Skip to content

Commit 033e594

Browse files
committed
Fix todo rendering
1 parent 4f243da commit 033e594

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cli/src/components/tools/write-todos.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const WriteTodosItem = ({ todos }: WriteTodosItemProps) => {
4141
<text style={{ wrapMode: 'word' }}>
4242
{todo.completed ? (
4343
<>
44-
<span fg={theme.success}></span>
44+
<span fg={theme.success}> </span>
4545
<span
4646
fg={theme.muted}
4747
attributes={TextAttributes.STRIKETHROUGH}
@@ -51,7 +51,7 @@ const WriteTodosItem = ({ todos }: WriteTodosItemProps) => {
5151
</>
5252
) : (
5353
<>
54-
<span fg={theme.foreground}></span>
54+
<span fg={theme.foreground}> </span>
5555
<span fg={theme.foreground}>{todo.task}</span>
5656
</>
5757
)}

0 commit comments

Comments
 (0)