diff options
Diffstat (limited to 'vnext/src/App.js')
-rw-r--r-- | vnext/src/App.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vnext/src/App.js b/vnext/src/App.js index 94b2ced5..5c9b3b81 100644 --- a/vnext/src/App.js +++ b/vnext/src/App.js @@ -155,7 +155,7 @@ export default class App extends React.Component { <Discover visitor={user} {...props} /> } /> <Route exact path="/settings" render={(props) => - <Settings visitor={user} {...props} /> + <Settings visitor={user} {...props} onChange={this.auth} /> } /> <Route exact path="/post" render={(props) => <Post visitor={user} {...props} />} /> <Route exact path="/pm" render={(props) => <Contacts visitor={user} {...props} />} /> |