fix: Websocket reconnect when navigating from settings -> home

This commit is contained in:
Tom Moor
2020-08-14 17:47:12 -07:00
parent 31910f1628
commit df9b0bcf91
2 changed files with 5 additions and 7 deletions

View File

@ -40,7 +40,7 @@ type Props = {
@observer
class SettingsSidebar extends React.Component<Props> {
returnToDashboard = () => {
this.props.history.push("/");
this.props.history.push("/home");
};
render() {