diff options
Diffstat (limited to 'source/features/convert-release-to-draft.tsx')
-rw-r--r-- | source/features/convert-release-to-draft.tsx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/source/features/convert-release-to-draft.tsx b/source/features/convert-release-to-draft.tsx index 3e1d9b32..4a6f4144 100644 --- a/source/features/convert-release-to-draft.tsx +++ b/source/features/convert-release-to-draft.tsx @@ -3,11 +3,11 @@ import select from 'select-dom'; import * as pageDetect from 'github-url-detection'; import delegate from 'delegate-it'; -import features from '../feature-manager'; -import * as api from '../github-helpers/api'; -import {getRepo} from '../github-helpers'; -import observe from '../helpers/selector-observer'; -import showToast from '../github-helpers/toast'; +import features from '../feature-manager.js'; +import * as api from '../github-helpers/api.js'; +import {getRepo} from '../github-helpers/index.js'; +import observe from '../helpers/selector-observer.js'; +import showToast from '../github-helpers/toast.js'; const getReleaseEditLinkSelector = (): 'a' => `a[href^="/${getRepo()!.nameWithOwner}/releases/edit"]` as 'a'; |