So it’s an issue with the initial state
Try add this to the body tag of the page
<script>
$(window).on('load', function() {
// Code to run after the window has fully loaded
console.log('Window is fully loaded');
// Trigger a click event on the first element with class 'header103_tab-link'
$('.header103_tab-link').first().click();
});
</script>