Skip to content

Commit

Permalink
feat(cb2-14234): changed let to const as per pr comment
Browse files Browse the repository at this point in the history
  • Loading branch information
cb-cs committed Oct 16, 2024
1 parent c38f4b7 commit a594436
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const handler = async (
_context: Context,
_callback: Callback,
) => {
let { NODE_ENV, SERVICE, AWS_REGION, AWS_STAGE, SEND_TO_SMC } = process.env;
const { NODE_ENV, SERVICE, AWS_REGION, AWS_STAGE, SEND_TO_SMC } = process.env;

logger.debug(
`\nRunning Service:\n '${SERVICE}'\n mode: ${NODE_ENV}\n stage: '${AWS_STAGE}'\n region: '${AWS_REGION}'\n
Expand Down

0 comments on commit a594436

Please sign in to comment.