diff options
| author | Andrej Mihajlov <and@mullvad.net> | 2017-10-14 12:46:49 +0200 |
|---|---|---|
| committer | Andrej Mihajlov <and@mullvad.net> | 2017-10-19 14:16:38 +0200 |
| commit | e83169fd6186e9a43b255a01cda0429d56b35dbb (patch) | |
| tree | 0ff3f3464303273f4b4120807d478682999fb80a | |
| parent | effc3c921a63e930abaf17861998b9131e39ee7c (diff) | |
| download | mullvadvpn-e83169fd6186e9a43b255a01cda0429d56b35dbb.tar.xz mullvadvpn-e83169fd6186e9a43b255a01cda0429d56b35dbb.zip | |
Register public route for /settings/support
| -rw-r--r-- | app/routes.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/routes.js b/app/routes.js index da1aec6c56..5736e7f37a 100644 --- a/app/routes.js +++ b/app/routes.js @@ -8,6 +8,7 @@ import LoginPage from './containers/LoginPage'; import ConnectPage from './containers/ConnectPage'; import SettingsPage from './containers/SettingsPage'; import AccountPage from './containers/AccountPage'; +import SupportPage from './containers/SupportPage'; import SelectLocationPage from './containers/SelectLocationPage'; import { getTransitionProps } from './transitions'; @@ -95,6 +96,7 @@ export default function makeRoutes(getState: ReduxGetState, componentProps: Shar <PrivateRoute exact path="/connect" component={ ConnectPage } /> <PublicRoute exact path="/settings" component={ SettingsPage } /> <PrivateRoute exact path="/settings/account" component={ AccountPage } /> + <PublicRoute exact path="/settings/support" component={ SupportPage } /> <PrivateRoute exact path="/select-location" component={ SelectLocationPage } /> </Switch> </CSSTransitionGroup> |
