tango-app-api-infra 3.9.23 → 3.9.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tango-app-api-infra",
3
- "version": "3.9.23",
3
+ "version": "3.9.24",
4
4
  "description": "infra",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -844,7 +844,7 @@ export async function ticketSummary( req, res ) {
844
844
  return res.sendError( 'this client not configured against footfall directory', 400 );
845
845
  }
846
846
  let isApprover = false;
847
- revisionArray = getConfig?.footfallDirectoryConfigs?.revision || [];
847
+ const revisionArray = getConfig?.footfallDirectoryConfigs?.revision || [];
848
848
  if ( Array.isArray( revisionArray ) && revisionArray.length > 0 ) {
849
849
  for ( const r of revisionArray ) {
850
850
  if ( r.actionType === 'approver' && r.isChecked === false ) {