Other Names of This Error:
1. [Chrome Dev Tools – Mobile] Unable to preventDefault inside passive event listener due to target being treated as passive
2. OwlCarousel2 Console warning when using touch events
SOLUTION
Add this code in main CSS of the theme
body {
touch-action: manipulation;
}
OR, add this code
.owl-carousel {
touch-action: none;
}