Fixed next pervious issue

This commit is contained in:
harish
2024-10-04 19:03:33 +05:30
parent 2bae3675f8
commit f838da73ef
2 changed files with 22 additions and 11 deletions

View File

@@ -72,7 +72,7 @@ public class ApplicationServiceImpl implements ApplicationService {
public NextOrPreviousFormResponse getNextOrPreviousForm(HttpServletRequest request, Long applicationId, Long formId,
FormActionEnum action) {
ApplicationEntity applicationEntity = validateApplication(applicationId);
return flowFormDao.getnextOrPreviousForm(applicationEntity, formId, action);
return flowFormDao.getNextOrPreviousForm(applicationEntity, formId, action);
}
@Override