Please remove the code shown below from your wplms-customizer.php file in wplms customizer plugin :
add_filter(‘wplms_calculated_commission_base’,’wplms_fixed_commission’,10,2);
function wplms_fixed_commission($commission,$instructor_id){
// You can also configure this based on instructor IDs
return 100;
}