Add this to your functions to remove the edit cog on all ACF fields.
function pands_admin_colors() {
echo '<style type="text/css">
h3.hndle.ui-sortable-handle a.acf-hndle-cog { display: none; visibility: hidden }
</style>';
}
add_action('admin_head', 'pands_admin_colors');