How to prevent slide change on “Tab” click in Swiper js

The title basically says it all. Using Tab on my swiper breaks it for some reason so I need to prevent it from switching slides after it went through all the clickable on tab elements in each of them. I’d prefer just using the navigation and manually clicking on each of them to go through the swiper. I don’t think there’s a need to provide any code, but here’s the options I used at least:

const swiper = new Swiper('.element', {
      loop: false,
      autoplay: false,
      autoHeight: true,
      keyboardControl: false,
      slidesPerView: 1,
      slidesPerGroup: 1,
      spaceBetween: 32,
      allowTouchMove: false,
      navigation: {
        nextEl: '.btn_right',
        prevEl: '.btn_left',
      },
    });

I tried using keyboardControl: false and also keyboard: {enabled: false, onlyInViewport: false} in the options, but that didn’t work