Hello,
Under Service Request, a button to submit says ‘Post Request’ instead of ‘Submit’ unlike ‘Issue a Ticket’ page. (We are also using the new ‘Home Page Designer’)

Is there a way to change it by any chance to ‘Submit’?
Just for testing, I inserted this code in ‘Page Layout’ which sorta does the job but not perfectly (One issue is it will say ‘Post Request’ temporarily before changing to ‘Submit’.
<script>
window.onload = function(){
var service_request_page = document.getElementById("service-item-request");
if (service_request_page !== null) {
$('.place-request-footer input').val("Submit");
}
};
</script>