Skip to content

Commit

Permalink
[CLD-502] search box remove company name filter (#205)
Browse files Browse the repository at this point in the history
  • Loading branch information
dannd4 authored Dec 12, 2019
1 parent 2348418 commit 1ffc84e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
7 changes: 3 additions & 4 deletions src/sagas/__tests__/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,9 @@ describe('client fetch data', () => {
call(fetcher, {
url: `${URLS.apps}?${setQueryParams({
clientId: '1',
category: 'game',
appName: '1',
companyName: '1',
pageNumber: 5,
category: params.data.category,
appName: params.data.search,
pageNumber: params.data.page,
pageSize: APPS_PER_PAGE
})}`,
api: REAPIT_API_BASE_URL,
Expand Down
1 change: 0 additions & 1 deletion src/sagas/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ export const clientDataFetch = function*({ data }) {
clientId,
category,
appName: search,
companyName: search,
pageNumber: page,
pageSize: APPS_PER_PAGE
})}`,
Expand Down

0 comments on commit 1ffc84e

Please sign in to comment.