Thanks @boybawang it was the CDN issue. I deregistered the default jQuery library, also attaching the code I added to my functions.php file to modify:
function enqueue_jquery_from_cdn() {
// Deregister the default WordPress jQuery
wp_deregister_script(‘jquery’);
// Enqueue jQuery from the Google CDN with the 'jquery' handle
wp_enqueue_script('jquery', 'https://code.jquery.com/jquery-3.6.0.min.js', array(), null, false);
}
add_action(‘wp_enqueue_scripts’, ‘enqueue_jquery_from_cdn’, 1);