(Squarespace) How to make Social Links open same tab

To make Social Links (Header Social, Social Links Block) open same tab, you can use this code to Code Injection > Footer

<script>
document.addEventListener('DOMContentLoaded', function() {
  const headerLinks = document.querySelectorAll('a.icon');
  headerLinks.forEach(function(link) {
    link.removeAttribute('target');
  });
  const navLinks = document.querySelectorAll('nav.sqs-svg-icon--list a');
  navLinks.forEach(function(link) {
    link.removeAttribute('target');
  });
});
</script>