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 d5d0c74 commit 586cd79Copy full SHA for 586cd79
src/reminders/tasks/dailyTasksReminder.ts
@@ -31,7 +31,7 @@ export const dailyTasksReminder = async () => {
31
if (githubItemsResult.err) {
32
return githubItemsResult;
33
}
34
- const nonIceboxItems = filterOutStatus(githubItemsResult.val, "Icebox");
+ const nonIceboxItems = filterOutStatus(githubItemsResult.val, "Ice box");
35
const nonBacklogItems = filterOutStatus(nonIceboxItems, "Backlog");
36
const unassignedItems = filterForUnassigned(nonBacklogItems);
37
const upcomingItems = filterUpcomingItems(nonBacklogItems);
0 commit comments