profile edit, default values fix

This commit is contained in:
feruz 2019-12-19 20:35:31 +02:00
parent 49ab35dada
commit 6bb03b1fa9

View File

@ -47,10 +47,12 @@ const FormInputView = ({
// TODO: Workaround for android context (copy/paste) menu, check react-navigation library // TODO: Workaround for android context (copy/paste) menu, check react-navigation library
useEffect(() => { useEffect(() => {
if (!value) {
setValue(' '); setValue(' ');
setTimeout(() => { setTimeout(() => {
setValue(''); setValue(value || '');
}, 1); }, 0);
}
}, []); }, []);
useEffect(() => { useEffect(() => {