Skip to content

Commit

Permalink
Fix dynamo table name
Browse files Browse the repository at this point in the history
  • Loading branch information
philmcmahon committed Jan 8, 2025
1 parent 5e79b7d commit 0b099e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/api/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ const getApp = async () => {
}
const { item, errorMessage } = await getTranscriptionItem(
dynamoClient,
'transcription-service-CODE',
config.app.tableName,
createRequest.data.transcriptId,
);
if (!item) {
Expand Down Expand Up @@ -242,7 +242,7 @@ const getApp = async () => {
}
const { item, errorMessage } = await getTranscriptionItem(
dynamoClient,
'transcription-service-CODE',
config.app.tableName,
exportRequest.data.id,
);
if (!item) {
Expand Down

0 comments on commit 0b099e6

Please sign in to comment.