OSTRZEŻENIE: Nie można aktualizować podczas istniejącego przejścia stanu (takiego jak w „render”). Metody renderowania powinny być czystą funkcją rekwizytów i stanu.

Instead of history.push, try using the Redirect component from react-router-dom instead. So instead of history.push('/blog');, try return <Redirect to="/blog" />
Corner Camper