| @@ -132,10 +132,13 @@ const Header = () => { | |||
| if (isAdminRoute()) { | |||
| search.setSearchStringManually(value); | |||
| } else { | |||
| if (!routeMatches(HOME_PAGE) && !routeMatches(BASE_PAGE)) { | |||
| if ( | |||
| !routeMatches(HOME_PAGE) && | |||
| !routeMatches(BASE_PAGE) && | |||
| !routeMatches(MARKETPLACE_PAGE) | |||
| ) { | |||
| const newQueryString = new URLSearchParams({ search: value }); | |||
| history.push({ | |||
| pathname: HOME_PAGE, | |||
| history.replace({ | |||
| search: newQueryString.toString(), | |||
| }); | |||
| } else { | |||