diff options
Diffstat (limited to 'source/features/copy-on-y.tsx')
-rw-r--r-- | source/features/copy-on-y.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/features/copy-on-y.tsx b/source/features/copy-on-y.tsx index 65a856aa..080d46b5 100644 --- a/source/features/copy-on-y.tsx +++ b/source/features/copy-on-y.tsx @@ -1,7 +1,7 @@ import select from 'select-dom'; +import * as pageDetect from 'github-url-detection'; import copyToClipboard from 'copy-text-to-clipboard'; import features from '../libs/features'; -import * as pageDetect from '../libs/page-detect'; const handler = ({key, target}: KeyboardEvent): void => { if (key === 'y' && (target as Element).nodeName !== 'INPUT') { |