diff --git a/src/components/pages/SettingsPage/index.jsx b/src/components/pages/SettingsPage/index.jsx index 9840680..d9c1076 100644 --- a/src/components/pages/SettingsPage/index.jsx +++ b/src/components/pages/SettingsPage/index.jsx @@ -69,6 +69,13 @@ class SettingsPage extends React.Component { const { loggedUser } = this.props; if (!loggedUser.anonymous) { this.props.readCache(loggedUser.username); + } else { + this.props.history.push({ + pathname: "/", + state: { + actionCard: 1, + }, + }); } };