Skip to content

Commit

Permalink
Merge pull request #134 from Itheum/develop
Browse files Browse the repository at this point in the history
feature: increase fwdHeaderKeys to less than 10 from 5 -- last update…
  • Loading branch information
newbreedofgeek authored Apr 18, 2024
2 parents be9b0d2 + 6fe9da2 commit efcb04d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/common/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -366,12 +366,12 @@ export function validateSpecificParamsViewData(params: {
typeof params.fwdHeaderKeys === 'string' &&
params.fwdHeaderKeys.trim() !== '' &&
params.fwdHeaderKeys.split(',').length > 0 &&
params.fwdHeaderKeys.split(',').length < 5
params.fwdHeaderKeys.split(',').length < 10
) {
fwdHeaderKeysIsValid = true;
} else {
validationMessages +=
'[fwdHeaderKeys needs to be a comma separated lowercase string with less than 5 items]';
'[fwdHeaderKeys needs to be a comma separated lowercase string with less than 10 items]';
}
}

Expand Down

0 comments on commit efcb04d

Please sign in to comment.