const toggleShow = () => {
setShow(!isShow)
}
React.useEffect(() => {
if (!filmsName.length) {
const getSourse = async (url) => {
const getPerson = await getApiJson(url)
setPersonInfo([{title: 'Height', data: getPerson.height}, {title: 'Name', data: getPerson.name}])
const getFilms = await getApiJson(url)
setFilms(getFilms.films)
const allP = await Promise.all(films.map(el => fetch(el)
.then(el => el.json())
.then(json => filmsNameArr.push(json))
))
setFilmsName(filmsNameArr)
}
getSourse(getPersonUrl)
}
}, [filmsName])
value={new Date(filterValue?.endDate.toString())} // Тут TS думает что тут может быть строка
Uncaught TypeError: Cannot read properties of undefined (reading 'toString')
Тогда блоки при переключении перестанут прыгать