Skip to content

Commit

Permalink
typecast fix
Browse files Browse the repository at this point in the history
  • Loading branch information
epipav committed Jan 4, 2024
1 parent 9808b4e commit 01a64a1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,9 @@ class MemberMergeSuggestionsRepository {
) => {
const idPlaceholder = (key: string) => `${key}${index}`
return {
query: `($(${idPlaceholder('memberId')}::uuid), $(${idPlaceholder(
query: `($(${idPlaceholder('memberId')})::uuid, $(${idPlaceholder(
'toMergeId',
)}::uuid), $(${idPlaceholder('similarity')}), $(${idPlaceholder(
)})::uuid, $(${idPlaceholder('similarity')}), $(${idPlaceholder(
'activityEstimate',
)}), NOW(), NOW())`,
replacements: {
Expand Down

0 comments on commit 01a64a1

Please sign in to comment.