From 71c95bb19be0446bab80abffd9d4fc563374def3 Mon Sep 17 00:00:00 2001 From: Noah Loomans Date: Wed, 17 Jan 2018 16:47:23 +0100 Subject: Fix typo --- src/client/react/reducers/search.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/react/reducers/search.js b/src/client/react/reducers/search.js index 7c7e917..2274a33 100644 --- a/src/client/react/reducers/search.js +++ b/src/client/react/reducers/search.js @@ -50,7 +50,7 @@ const search = (state = DEFAULT_STATE, action) => { let isExactMatch = false; // Is the typed value exactly the same as the first result? Then show the - // appropiate icon instead of the generic search icon. + // appropriate icon instead of the generic search icon. if ((results.length === 1) && (action.searchText === users.byId[results[0]].value)) { [selectedResult] = results; isExactMatch = true; -- cgit v1.1