The update with the fix would be released tomorrow.
Although it is possible, but if we remove the excerpt block then except for modern child theme, the content would duplicate in the remaining theme layouts.
But yes it is possible to remove it in the new front end.
Add below code to functions.php of child theme to remove the short description area.
add_filter('wplms_course_creation_tabs','remove_course_short_description');
function <span style="line-height: 1.5;">remove_course_short_description($fields){</span>
unset($fields['create_course']['fields'][3]); //3 for short, 4 for full description
return $fields;
}