We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 276daaf commit 15a4bddCopy full SHA for 15a4bdd
src/core/environment/reminder.ts
@@ -1,4 +1,4 @@
1
-import { TodoItem } from "@roo-code/types"
+import { TodoItem, TodoStatus } from "@roo-code/types"
2
3
/**
4
* Format the reminders section as a markdown block in English, with basic instructions.
@@ -7,7 +7,7 @@ export function formatReminderSection(todoList?: TodoItem[]): string {
7
if (!todoList || todoList.length === 0) {
8
return ""
9
}
10
- const statusMap: Record<string, string> = {
+ const statusMap: Record<TodoStatus, string> = {
11
pending: "Pending",
12
in_progress: "In Progress",
13
completed: "Completed",
0 commit comments