diff options
Diffstat (limited to 'source/features/show-names.tsx')
-rw-r--r-- | source/features/show-names.tsx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/source/features/show-names.tsx b/source/features/show-names.tsx index 4567f6e3..852b2910 100644 --- a/source/features/show-names.tsx +++ b/source/features/show-names.tsx @@ -3,11 +3,11 @@ import React from 'dom-chef'; import * as pageDetect from 'github-url-detection'; import batchedFunction from 'batched-function'; -import features from '../feature-manager'; -import * as api from '../github-helpers/api'; -import {getUsername, compareNames} from '../github-helpers'; -import observe from '../helpers/selector-observer'; -import {removeTextNodeContaining} from '../helpers/dom-utils'; +import features from '../feature-manager.js'; +import * as api from '../github-helpers/api.js'; +import {getUsername, compareNames} from '../github-helpers/index.js'; +import observe from '../helpers/selector-observer.js'; +import {removeTextNodeContaining} from '../helpers/dom-utils.js'; // The selector observer calls this function several times, but we want to batch them into a single GraphQL API call const batchUpdateLinks = batchedFunction(async (batchedUsernameElements: HTMLAnchorElement[]): Promise<void> => { |