Skip to content

Commit e6df108

Browse files
committed
remove async
1 parent 99eec5b commit e6df108

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web_src/js/features/repo-commit.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export function initRepoEllipsisButton() {
1212
}
1313

1414
export function initCommitStatuses() {
15-
registerGlobalInitFunc('initCommitStatuses', async (el: HTMLElement) => {
15+
registerGlobalInitFunc('initCommitStatuses', (el: HTMLElement) => {
1616
const nextEl = el.nextElementSibling;
1717
if (!nextEl.matches('.tippy-target')) throw new Error('Expected next element to be a tippy target');
1818
createTippy(el, {

0 commit comments

Comments
 (0)