After receiving a successful response from Axios, I would like to open the page link in a new tab. I have searched for a solution online, but the browser is consistently blocking popups. The code below worked for me, however it is not supported in all browsers:
let newTab = window.open(); newTab.location.href = url;