diff options
Diffstat (limited to 'source/features/copy-on-y.tsx')
-rw-r--r-- | source/features/copy-on-y.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/features/copy-on-y.tsx b/source/features/copy-on-y.tsx index 2fc3c567..8a6d05b7 100644 --- a/source/features/copy-on-y.tsx +++ b/source/features/copy-on-y.tsx @@ -1,5 +1,5 @@ -import features from '../feature-manager'; -import {isEditable} from '../helpers/dom-utils'; +import features from '../feature-manager.js'; +import {isEditable} from '../helpers/dom-utils.js'; async function handler({key, target}: KeyboardEvent): Promise<void> { if (key === 'y' && !isEditable(target)) { |