Found it
in /inc/customizer-includes/catchbase-customizer-social-icons.php
Changed the following:
if( $option == 'Email' ){
$wp_customize->add_setting( 'catchbase_theme_options['. $lower_case_option .'_link]', array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'sanitize_email',
) );
}
else if( $option == 'Skype' ){
$wp_customize->add_setting( 'catchbase_theme_options['. $lower_case_option .'_link]', array(
'capability' => 'edit_theme_options',
) );
}
else {
$wp_customize->add_setting( 'catchbase_theme_options['. $lower_case_option .'_link]', array(
'capability' => 'edit_theme_options',
'sanitize_callback' => 'esc_url_raw',
) );