diff options
Diffstat (limited to 'src/components/completion.js')
-rw-r--r-- | src/components/completion.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/completion.js b/src/components/completion.js index 489061c..d1fdd06 100644 --- a/src/components/completion.js +++ b/src/components/completion.js @@ -6,7 +6,7 @@ export default class Completion { } update() { - let state = this.store.getState(); + let state = this.store.getState().completion; if (JSON.stringify(this.prevState) === JSON.stringify(state)) { return; } |