Skip to content

Commit

Permalink
fix(deepsource): 🚑 fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucas committed Apr 17, 2024
1 parent 32c9dff commit 09b4237
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dao/dynamo/dao.ts
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ const dynamicFilters = ({
filterExpression.push(`#filter_${index} ${operator} (${values})`)

newExpressionAttributeNames[`#filter_${index}`] = field
value.forEach((v: any, i: number) => {
value.forEach((v: string, i: number) => {
newExpressionAttributeValues[`:filter_in_${index}_${i}`] = v
})
} else {
Expand Down

0 comments on commit 09b4237

Please sign in to comment.