Skip to content

Commit

Permalink
fix keyword only search issue
Browse files Browse the repository at this point in the history
  • Loading branch information
johnweng001 committed Aug 24, 2023
1 parent 86fe9cf commit b8ae390
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/search/geosearch.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -664,7 +664,7 @@ const GeoSearch = (
);
// console.log(searchParams);
axios
.get(`${EnvGlobals.APP_API_DOMAIN_URL}${EnvGlobals.APP_API_ENDPOINTS.SEARCH}`, { params: searchParams, headers: { 'Authorization': `Bearer ${getAccessToken()}` } })
.get(`${EnvGlobals.APP_API_DOMAIN_URL}${EnvGlobals.APP_API_ENDPOINTS.SEARCH}`, { params: searchParams })
.then((response) => {
analyticPost(analyticParams);
return response.data;
Expand Down

0 comments on commit b8ae390

Please sign in to comment.