Skip to content

Commit aa26b42

Browse files
committed
Fix following merge with main
1 parent f1a5ffa commit aa26b42

File tree

1 file changed

+1
-1
lines changed
  • lambdas/api-handler/src/config

1 file changed

+1
-1
lines changed

lambdas/api-handler/src/config/deps.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ function createDocumentClient(): DynamoDBDocumentClient {
2323
function createLetterRepository(documentClient: DynamoDBDocumentClient, log: pino.Logger, envVars: EnvVars): LetterRepository {
2424
const config = {
2525
lettersTableName: envVars.LETTERS_TABLE_NAME,
26-
ttlHours: envVars.LETTER_TTL_HOURS
26+
lettersTtlHours: envVars.LETTER_TTL_HOURS
2727
};
2828

2929
return new LetterRepository(documentClient, log, config);

0 commit comments

Comments
 (0)