diff options
Diffstat (limited to 'src/console')
-rw-r--r-- | src/console/reducers/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/console/reducers/index.js b/src/console/reducers/index.js index 043689c..7dcad17 100644 --- a/src/console/reducers/index.js +++ b/src/console/reducers/index.js @@ -13,7 +13,7 @@ const defaultState = { const nextSelection = (state) => { if (state.completions.length === 0) { return [-1, -1]; - }; + } if (state.groupSelection < 0) { return [0, 0]; } |