Fix api calls for search (#269)

This commit is contained in:
darth-coder00 2021-08-23 10:34:30 +05:30 committed by GitHub
parent f028c1d395
commit 7943d21dcc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -167,19 +167,19 @@ const ExplorePage: React.FC = (): React.ReactElement => {
const serviceTypeAgg = searchData(
searchText,
currentPage,
PAGE_SIZE,
0,
getFilterString(filters, ['service type'])
);
const tierAgg = searchData(
searchText,
currentPage,
PAGE_SIZE,
0,
getFilterString(filters, ['tier'])
);
const tagAgg = searchData(
searchText,
currentPage,
PAGE_SIZE,
0,
getFilterString(filters, ['tags'])
);