From 06a706bb49641dc83983f1a347bcd14ef123143f Mon Sep 17 00:00:00 2001 From: curtisy Date: Thu, 14 Nov 2019 23:11:40 +0100 Subject: [PATCH] Assign value to allWords. Oops --- src/App.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/App.tsx b/src/App.tsx index aa97c69..975f296 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -43,6 +43,7 @@ class App extends React.Component { const words = await connection.manager.find(Dictionary); this.setState({ words: words, + allWords: words, isLoaded: true }); }