diff options
Diffstat (limited to 'source/features/user-profile-follower-badge.tsx')
-rw-r--r-- | source/features/user-profile-follower-badge.tsx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source/features/user-profile-follower-badge.tsx b/source/features/user-profile-follower-badge.tsx index 8bc05299..353729ad 100644 --- a/source/features/user-profile-follower-badge.tsx +++ b/source/features/user-profile-follower-badge.tsx @@ -3,10 +3,10 @@ import cache from 'webext-storage-cache'; import elementReady from 'element-ready'; import * as pageDetect from 'github-url-detection'; -import features from '../feature-manager'; -import * as api from '../github-helpers/api'; -import {getUsername, getCleanPathname} from '../github-helpers'; -import attachElement from '../helpers/attach-element'; +import features from '../feature-manager.js'; +import * as api from '../github-helpers/api.js'; +import {getUsername, getCleanPathname} from '../github-helpers/index.js'; +import attachElement from '../helpers/attach-element.js'; const doesUserFollow = cache.function('user-follows', async (userA: string, userB: string): Promise<boolean> => { const {httpStatus} = await api.v3(`/users/${userA}/following/${userB}`, { |