Skip to content

Commit

Permalink
Merge pull request #40 from AOT-Technologies/feature/update-lob
Browse files Browse the repository at this point in the history
Hard coded form name
  • Loading branch information
nagarajaPC-AOT authored Mar 27, 2024
2 parents 2c6e9cf + f74b16f commit d875ea8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/caseflow_web/src/components/CaseDetails/CaseDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,8 @@ const CaseDetails = () => {
const getForms = async () => {

let type= caseTypes.find(type=> type.id == selectedCase.typeid)
const formsList = await getFormsListByName(type?.searchterm);
//Hard coded form name for POC, should be removed for actual implemetnation
const formsList = await getFormsListByName('Case Flow POC');
setFormsList(formsList);
setOpenWorkflowPopup(true);
};
Expand Down

0 comments on commit d875ea8

Please sign in to comment.