diff --git a/docs/configuration.md b/docs/configuration.md
index db6b268..303129c 100644
--- a/docs/configuration.md
+++ b/docs/configuration.md
@@ -19,7 +19,6 @@ The URLs for these endpoints, as well as other configurable settings in your tim
| MAP_ANCHOR | Geographic coordinates for original map anchor | Array of numbers | No |
| MAPBOX_TOKEN | Access token for Mapbox satellite imagery | String | No |
| features.USE_ASSOCIATIONS | Enable / Disable filters | boolean | No |
-| features.USE_SEARCH | Enable / Disable search | boolean | No |
| features.USE_SITES | Enable / Disable sites | boolean | No |
In this configuration file you'll need to add your Mapbox token (see [here for more info](https://www.mapbox.com/help/define-access-token/)). Additionally, you'll need to replace the required endpoints by functioning ones. Finally, you'll want to initialize your application set in `MAP_ANCHOR`, as a (lat, long) pair, which determines the specific location at which the application will center itself on start.
diff --git a/example.config.js b/example.config.js
index f257c79..a159c4c 100644
--- a/example.config.js
+++ b/example.config.js
@@ -26,7 +26,6 @@ module.exports = {
USE_ASSOCIATIONS: true,
USE_SOURCES: true,
USE_COVER: true,
- USE_SEARCH: false,
USE_SITES: false,
USE_SHAPES: false,
GRAPH_NONLOCATED: false,
diff --git a/src/components/Toolbar/Layout.js b/src/components/Toolbar/Layout.js
index cceab2a..7221b6f 100644
--- a/src/components/Toolbar/Layout.js
+++ b/src/components/Toolbar/Layout.js
@@ -5,7 +5,6 @@ import * as actions from '../../actions'
import * as selectors from '../../selectors'
import { Tabs, TabPanel } from 'react-tabs'
-import Search from './Search'
import FilterListPanel from './FilterListPanel'
import CategoriesListPanel from './CategoriesListPanel'
import BottomActions from './BottomActions'
@@ -31,23 +30,6 @@ class Toolbar extends React.Component {
)
}
- renderSearch () {
- if (this.props.features.USE_SEARCH) {
- return (
-