diff options
Diffstat (limited to 'source/features/repo-wide-file-finder.tsx')
-rw-r--r-- | source/features/repo-wide-file-finder.tsx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source/features/repo-wide-file-finder.tsx b/source/features/repo-wide-file-finder.tsx index c681365f..edc27e57 100644 --- a/source/features/repo-wide-file-finder.tsx +++ b/source/features/repo-wide-file-finder.tsx @@ -1,10 +1,10 @@ import select from 'select-dom'; import * as pageDetect from 'github-url-detection'; -import features from '../feature-manager'; -import getDefaultBranch from '../github-helpers/get-default-branch'; -import {buildRepoURL, getCurrentCommittish} from '../github-helpers'; -import {registerHotkey} from '../github-helpers/hotkey'; +import features from '../feature-manager.js'; +import getDefaultBranch from '../github-helpers/get-default-branch.js'; +import {buildRepoURL, getCurrentCommittish} from '../github-helpers/index.js'; +import {registerHotkey} from '../github-helpers/hotkey.js'; async function init(): Promise<void> { registerHotkey('t', buildRepoURL('tree', getCurrentCommittish() ?? await getDefaultBranch()) + '?search=1'); |