Skip to content

Commit 654c156

Browse files
committed
chore: cleanup
1 parent b0cd173 commit 654c156

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

packages/app/src/components/question-dock.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export const QuestionDock: Component<{ request: QuestionRequest }> = (props) =>
3333

3434
const summary = createMemo(() => {
3535
const n = Math.min(store.tab + 1, total())
36-
return `${n}/${total()}`
36+
return `${n} of ${total()} questions`
3737
})
3838

3939
const last = createMemo(() => store.tab >= total() - 1)

packages/app/src/components/session-todo-dock.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export function SessionTodoDock(props: { todos: Todo[]; title: string; collapseL
4040
const total = props.todos.length
4141
if (total === 0) return ""
4242
const completed = props.todos.filter((todo) => todo.status === "completed").length
43-
return `${completed}/${total}`
43+
return `${completed} of ${total} ${props.title.toLowerCase()} completed`
4444
})
4545

4646
const active = createMemo(

0 commit comments

Comments
 (0)