diff --git a/src/components/formInput/view/formInputView.js b/src/components/formInput/view/formInputView.js index b353711bb..e0b6112b7 100644 --- a/src/components/formInput/view/formInputView.js +++ b/src/components/formInput/view/formInputView.js @@ -47,10 +47,12 @@ const FormInputView = ({ // TODO: Workaround for android context (copy/paste) menu, check react-navigation library useEffect(() => { - setValue(' '); - setTimeout(() => { - setValue(''); - }, 1); + if (!value) { + setValue(' '); + setTimeout(() => { + setValue(value || ''); + }, 0); + } }, []); useEffect(() => {