This commit is contained in:
2022-11-29 21:36:42 +03:00
parent 8405acb27d
commit a387785361
3 changed files with 4 additions and 4 deletions

View File

@@ -34,7 +34,7 @@ const fullScreenFeature = getFeatures('hub-video-start')?.fullScreen;
const Input = ({ onStart }) => {
const [value, setValue] = useState('');
const [inFocuse, setInfocuse] = useState(true);
const [inFocuse, setInfocuse] = useState(false);
const handleChange = useCallback(event => {
setValue(event.target.value.toUpperCase())
}, [setValue]);