Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobc2700 committed Jul 15, 2024
1 parent 58531b1 commit b23e921
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/s3/s3-router.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ s3Router.get(
const { userIds } = BatchResumeDownloadValidator.parse(req.body);

const batchDownloadPromises = userIds.map((userId) =>
getResumeUrl(userId, s3)
getResumeUrl(userId, s3, BucketName.RP_2024_RESUMES)
.then((url) => ({ userId, url: url }))
.catch(() => ({ userId, url: null }))
);
Expand Down

0 comments on commit b23e921

Please sign in to comment.