This commit is contained in:
Ashita Prasad
2025-02-23 23:58:48 +05:30
parent 9a6130dd53
commit 0ef5a800fd
2 changed files with 17 additions and 4 deletions

View File

@ -86,7 +86,11 @@ HttpRequestModel substituteHttpRequestModel(
value: substituteVariables(param.value, envMap, activeEnvironmentId),
);
}).toList(),
body: substituteVariables(httpRequestModel.body, envMap, activeEnvironmentId),
body: substituteVariables(
httpRequestModel.body,
envMap,
activeEnvironmentId,
),
);
return newRequestModel;
}