INFRA-3970 | Dhruv | remove console logs

This commit is contained in:
dhruvjoshi
2024-12-16 20:37:10 +05:30
parent 65ad3765ff
commit 56671e28cb
2 changed files with 0 additions and 2 deletions

View File

@@ -303,7 +303,6 @@ const Form = (props: any) => {
const updatedManifest = JSON.parse(JSON.stringify(manifest));
console.log(limitBreachedValues, defaultValues, updatedManifest);
unsetOrSetDefaultValues(updatedManifest, limitBreachedValues, defaultValues);
const postManifestResponse = await post(updatedManifest, API_TO_POST_MANIFEST);

View File

@@ -141,7 +141,6 @@ const isChangeRequestRequired = (limit, value, previousValue, manifestEnv) => {
return true;
}
if (limit.hasOwnProperty('object')) {
console.log('limit.object', limit.object);
for (const json of limit.object) {
const jsonObj = JSON.parse(json);
const flag = _.some([value], jsonObj);