fix(helpers) move copyText function to web.js file

It gets bundled on mobile for no reason otherwise.
This commit is contained in:
Filip Rejmus
2022-09-26 19:31:06 +02:00
committed by GitHub
parent c613082ce1
commit c3ebde18df
4 changed files with 20 additions and 20 deletions

View File

@@ -3,7 +3,7 @@ import React, { useRef } from 'react';
import { WithTranslation } from 'react-i18next';
import { translate } from '../../../../base/i18n/functions';
import { copyText } from '../../../../base/util/helpers';
import { copyText } from '../../../../base/util/copyText';
import { NOTIFY_CLICK_MODE } from '../../../../toolbox/constants';
import PasswordForm from './PasswordForm';