Tengo el siguiente código en mi HTML
la nueva pestaña está siendo bloqueada por el navegador como una ventana emergente
<script> setTimeout(function () { location.href = "/user/agent/dashboard"; }, 100); </script> <script> function NewTab() { window.open( "{{ .destination }}", 1000); } NewTab(); </script>Podrías usar:
<script> setTimeout(function () { location.href = "/user/agent/dashboard","window name","_blank"; }, 100); </script>