diff options
Diffstat (limited to 'source/features/forked-to.tsx')
-rw-r--r-- | source/features/forked-to.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/features/forked-to.tsx b/source/features/forked-to.tsx index 867a9467..33e44e29 100644 --- a/source/features/forked-to.tsx +++ b/source/features/forked-to.tsx @@ -17,7 +17,7 @@ async function save(forks: string[]): Promise<void> { return cache.set(getCacheKey(), forks, 10); } -async function saveAllForks(): Promise<void> { +function saveAllForks(): void { const forks = select .all('details-dialog[src*="/fork"] .octicon-repo-forked') .map(({nextSibling}) => nextSibling!.textContent!.trim()); |