diff options
author | 2023-05-07 20:38:33 +0800 | |
---|---|---|
committer | 2023-05-07 20:38:33 +0800 | |
commit | 01dd06acceb957ae824d346a5ff8736ee7320c8a (patch) | |
tree | 492386420c2eb8eeda9c290f1dd7c9e9b0edaf56 /source/features/default-branch-button.tsx | |
parent | ec4e7bec5fbb7e002a6e4d2882822ad0b7a221bd (diff) | |
download | refined-github-01dd06acceb957ae824d346a5ff8736ee7320c8a.tar.gz refined-github-01dd06acceb957ae824d346a5ff8736ee7320c8a.tar.zst refined-github-01dd06acceb957ae824d346a5ff8736ee7320c8a.zip |
Lint (ESM file imports 2) (#6630)
Diffstat (limited to 'source/features/default-branch-button.tsx')
-rw-r--r-- | source/features/default-branch-button.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/features/default-branch-button.tsx b/source/features/default-branch-button.tsx index f3e89240..0f2e400f 100644 --- a/source/features/default-branch-button.tsx +++ b/source/features/default-branch-button.tsx @@ -9,7 +9,7 @@ import {groupButtons} from '../github-helpers/group-buttons.js'; import getDefaultBranch from '../github-helpers/get-default-branch.js'; import {getCurrentCommittish} from '../github-helpers/index.js'; import observe from '../helpers/selector-observer.js'; -import {branchSelector} from '../github-helpers/selectors'; +import {branchSelector} from '../github-helpers/selectors.js'; async function add(branchSelector: HTMLElement): Promise<void> { const defaultBranch = await getDefaultBranch(); |