Skip to content

Commit 586cd79

Browse files
authored
Fix Ice Box filter
1 parent d5d0c74 commit 586cd79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/reminders/tasks/dailyTasksReminder.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export const dailyTasksReminder = async () => {
3131
if (githubItemsResult.err) {
3232
return githubItemsResult;
3333
}
34-
const nonIceboxItems = filterOutStatus(githubItemsResult.val, "Icebox");
34+
const nonIceboxItems = filterOutStatus(githubItemsResult.val, "Ice box");
3535
const nonBacklogItems = filterOutStatus(nonIceboxItems, "Backlog");
3636
const unassignedItems = filterForUnassigned(nonBacklogItems);
3737
const upcomingItems = filterUpcomingItems(nonBacklogItems);

0 commit comments

Comments
 (0)