fix adaptive

This commit is contained in:
2022-11-29 22:36:58 +03:00
parent 43ca37d817
commit 37f6f1bdd8
7 changed files with 71 additions and 12 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
import React, {useState, useCallback, useRef, useMemo} from 'react';
import { getFeatures } from '@ijl/cli';
import logo from '../assets/logo-white.svg';
import logo from '../assets/logo.svg';
import arrow from '../assets/36-arrow-right.svg';
import { Keyboard } from '../components/keyboard';
@@ -34,7 +34,7 @@ const fullScreenFeature = getFeatures('hub-video-start')?.fullScreen;
const Input = ({ onStart }) => {
const [value, setValue] = useState('');
const [inFocuse, setInfocuse] = useState(false);
const [inFocuse, setInfocuse] = useState(true);
const handleChange = useCallback(event => {
setValue(event.target.value.toUpperCase())
}, [setValue]);