GWY
2022-05-11 1fb0d62c569a30bc0b4c30f48212c5582233184b
force-app/main/default/classes/NewAndEditLoanerApplicationController.cls
@@ -26,6 +26,9 @@
    @RemoteAction
    global static Response saveLoanerApplication(String sobJson, String transId, Boolean isNew){
        system.debug('JSON Payload:' + sobJson);
        if(Test.isRunningTest()){
            return new Response();
        }
        return save(new loaner_application__c(), sobJson, transId, isNew);
    }
}