Skip to content

Commit

Permalink
fix: use template literal for interpolation
Browse files Browse the repository at this point in the history
  • Loading branch information
trivikr committed Jul 14, 2024
1 parent 3ae152f commit 5166f25
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const getUnsuppportedComment = (keyName: string) =>
` The key ${keyName} is no longer supported in v3, and can be removed.`;

const getCodemodUnsuppportedComments = (keyName: string) => [
" The transformation for ${keyName} is not implemented.",
` The transformation for ${keyName} is not implemented.`,
" Refer to UPGRADING.md on aws-sdk-js-v3 for changes needed.",
` Please create/upvote feature request on aws-sdk-js-codemod for ${keyName}.`,
];
Expand Down

0 comments on commit 5166f25

Please sign in to comment.