Skip to content

Commit

Permalink
Merge pull request #771 from webitel/fix/search-star
Browse files Browse the repository at this point in the history
  • Loading branch information
VladimirBeria authored Sep 12, 2024
2 parents cb710f1 + f541e30 commit bd15e45
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ const getQueueAgentsList = async (params) => {
sort,
} = applyTransform(params, [
merge(getDefaultGetParams()),
starToSearch('search'),
sanitize(fieldsToSend),
]);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const getTeamAgentsList = async (params) => {
size = 10,
search,
sort,
} = applyTransform(params, [merge(getDefaultGetParams()), starToSearch('search')]);
} = applyTransform(params, [merge(getDefaultGetParams()),]);

try {
const response = await agentService.searchAgent(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ const getTeamSupervisorsList = async (params) => {

const { page, size, search, parentId, sort } = applyTransform(params, [
merge(getDefaultGetParams()),
starToSearch('search'),
]);

try {
Expand Down

0 comments on commit bd15e45

Please sign in to comment.