How do I change the default phone field?

There is a hook for that!

‘eTapMapping_phone_type’ looks like:

$phone_type = apply_filters(‘eTapMapping_phone_type’,’Voice’,$entry,$form,$feed);

so simply return the phone type of your choice.

add_filter('eTapMapping_phone_type', function($entry){return 'Mobile';});