diff options
author | 2019-08-31 01:26:28 +0700 | |
---|---|---|
committer | 2019-08-31 01:26:28 +0700 | |
commit | 8d0393542bd712d7bb7f93874118dedd07b62c7b (patch) | |
tree | 0a139195466ba76bf5abdd6cbb979e55dcf3322a /source/features/forked-to.tsx | |
parent | 0ca864af6da9cac9f503e4abd0c58b60fbe1abc6 (diff) | |
download | refined-github-19.8.31.tar.gz refined-github-19.8.31.tar.zst refined-github-19.8.31.zip |
Update dependencies and lint (#2391)19.8.31
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()); |