Skip to content

Commit

Permalink
Resolve eslint no-explicit-any
Browse files Browse the repository at this point in the history
  • Loading branch information
TylerHendrickson committed Dec 21, 2023
1 parent 55e2d1e commit 9d9e287
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/src/lib/aws.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ function getSQSClient() {
return sqs
}

async function sendSqsMessage(queueUrl: string, messageBody: any) {
async function sendSqsMessage(queueUrl: string, messageBody: unknown) {
const sqs = getSQSClient()
await sqs.send(
new SendMessageCommand({
Expand Down

0 comments on commit 9d9e287

Please sign in to comment.