aboutsummaryrefslogtreecommitdiff
path: root/src/client/react/reducers/search.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/react/reducers/search.js')
-rw-r--r--src/client/react/reducers/search.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/client/react/reducers/search.js b/src/client/react/reducers/search.js
index 29d0e5c..2a7e7a5 100644
--- a/src/client/react/reducers/search.js
+++ b/src/client/react/reducers/search.js
@@ -2,7 +2,6 @@ import fuzzy from 'fuzzy';
import users from '../users';
const DEFAULT_STATE = {
- input: '',
results: [
's/18562',
],
@@ -41,7 +40,6 @@ const search = (state = DEFAULT_STATE, action) => {
return {
...state,
- input: action.typedValue,
results,
selectedResult,
isExactMatch,