React.useEffect(() => {
if (isMounted.current) {
const json = JSON.stringify(cart);
localStorage.setItem('cart', json);
}
isMounted.current = true;
if (IsAuth === true) {
setModalVisible(false)
history("/profil")
}
}, [cart, IsAuth]);