Skip to content

Commit

Permalink
fix: wrong import in Cognito Email Sender lambda function (#786)
Browse files Browse the repository at this point in the history
  • Loading branch information
craigzour authored Aug 27, 2024
1 parent c21381e commit f1cfae9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lambda-code/cognito-email-sender/main.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import encryptionSDK from "@aws-crypto/client-node";
import { Handler } from "aws-lambda";
import { SecretsManagerClient, GetSecretValueCommand } from "@aws-sdk/client-secrets-manager";
import { GCNotifyClient } from "lib/gc-notify-client.js";
import { GCNotifyClient } from "./lib/gc-notify-client.js";

const KEY_ARN = process.env.KEY_ARN;
const KEY_ALIAS = process.env.KEY_ALIAS;
Expand Down

0 comments on commit f1cfae9

Please sign in to comment.