I have a logic on backend (Flask) that generates csv files. When I access that endpoint through the browsers, it downloads the files automatically. When I access that endpoint from frontend (React) using Axios, I just get the response data, but it doesn't trigger the download automatically. What is the reason for this, and is there a way to do it without having to set Axios like here - How to download files using axios
Thanks