summaryrefslogtreecommitdiff
path: root/source/features/ci-link.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'source/features/ci-link.tsx')
-rw-r--r--source/features/ci-link.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/features/ci-link.tsx b/source/features/ci-link.tsx
index 77899474..8bc1305f 100644
--- a/source/features/ci-link.tsx
+++ b/source/features/ci-link.tsx
@@ -8,7 +8,7 @@ import fetchDom from '../helpers/fetch-dom';
import {buildRepoURL} from '../github-helpers';
// Look for the CI icon in the latest 2 days of commits #2990
-const getIcon = onetime(fetchDom.bind(null,
+const getIcon = onetime(async () => fetchDom(
buildRepoURL('commits'), [
'.commit-group:nth-of-type(-n+2) .commit-build-statuses', // Pre "Repository refresh" layout
'.TimelineItem--condensed:nth-of-type(-n+2) .commit-build-statuses'