Skip to content

Commit 15a4bdd

Browse files
committed
Use type
1 parent 276daaf commit 15a4bdd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/core/environment/reminder.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { TodoItem } from "@roo-code/types"
1+
import { TodoItem, TodoStatus } from "@roo-code/types"
22

33
/**
44
* Format the reminders section as a markdown block in English, with basic instructions.
@@ -7,7 +7,7 @@ export function formatReminderSection(todoList?: TodoItem[]): string {
77
if (!todoList || todoList.length === 0) {
88
return ""
99
}
10-
const statusMap: Record<string, string> = {
10+
const statusMap: Record<TodoStatus, string> = {
1111
pending: "Pending",
1212
in_progress: "In Progress",
1313
completed: "Completed",

0 commit comments

Comments
 (0)