diff --git a/spiffworkflow-frontend/src/components/ProcessInstanceListTable.tsx b/spiffworkflow-frontend/src/components/ProcessInstanceListTable.tsx index 2c40fecc..6c75ced5 100644 --- a/spiffworkflow-frontend/src/components/ProcessInstanceListTable.tsx +++ b/spiffworkflow-frontend/src/components/ProcessInstanceListTable.tsx @@ -231,17 +231,10 @@ export default function ProcessInstanceListTable({ }; const getProcessModelSpanTag = ( - processInstance: ProcessInstance, + _processInstance: ProcessInstance, identifier: string ) => { - const modifiedModelId = modifyProcessIdentifierForPathParam( - processInstance.process_model_identifier - ); - return ( - - {identifier} - - ); + return {identifier}; }; const getWaitingForTableCellComponent = (processInstanceTask: any) => {