Skip to content

Commit 12ea807

Browse files
authored
Merge pull request #249 from takker99:deps
fix: Check whether each project in `projects` are changed
2 parents 9f58973 + 5ebd793 commit 12ea807

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

workflow/useTaskCrawler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export const useTaskCrawler = (projects: string[]): UseTaskCrawlerResult =>
6868
},
6969
() => ({ tasks, errors, load, loading }),
7070
];
71-
}, [projects]),
71+
}, projects),
7272
);
7373

7474
const makeTask = (Links: Iterable<Link>): [Task[], TaskError[]] => {

0 commit comments

Comments
 (0)