Skip to content

Commit

Permalink
[backend] Fix No error when merging two entities with a higher confid…
Browse files Browse the repository at this point in the history
…ence level (#issue/6502)
  • Loading branch information
SarahBocognano committed Apr 4, 2024
1 parent d0fc8c1 commit 8b7a2a1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const buildQueryFilters = async (filters, search, taskPosition) => {
};
};
export const executeTaskQuery = async (context, user, filters, search, start = null) => {
const options = await buildQueryFilters(user, filters, search, start);
const options = await buildQueryFilters(filters, search, start);
return elPaginate(context, user, READ_DATA_INDICES_WITHOUT_INFERRED, options);
};

Expand Down

0 comments on commit 8b7a2a1

Please sign in to comment.