Skip to content

Commit

Permalink
fix(migrate-template-gen): remove extraneous return
Browse files Browse the repository at this point in the history
  • Loading branch information
rjabhi committed Dec 4, 2024
1 parent 18f5ec3 commit 32ffd8a
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,6 @@ class CategoryTemplateGenerator<CFNCategoryType extends CFN_CATEGORY_TYPE> {
const oAuthProviderCredentialsParam = Parameters.find((param) => param.ParameterKey === HOSTED_PROVIDER_CREDENTIALS_PARAMETER_NAME);
assert(oAuthProviderCredentialsParam);
oAuthProviderCredentialsParam.ParameterValue = JSON.stringify(oAuthValues);
return {
oldTemplate: oldGen1Template,
newTemplate: gen1TemplateWithConditionsResolved,
parameters: Parameters,
};
}
return {
oldTemplate: oldGen1Template,
Expand Down

0 comments on commit 32ffd8a

Please sign in to comment.