Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/components/Maintenance/Maintenance.jsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import React from 'react'
import './Maintenance.scss'

const Maintenance = () => {
Expand Down
10 changes: 4 additions & 6 deletions src/routes/settings/routes.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Settings routes
*/
import React from 'react'
import { Route, Switch } from 'react-router-dom'
import { Route } from 'react-router-dom'
import { renderApp } from '../../components/App/App'
import TopBarContainer from '../../components/TopBar/TopBarContainer'
import NotificationsToolBar from '../notifications/components/NotificationsToolBar'
Expand All @@ -12,9 +12,7 @@ import NotificationSettingsContainer from './routes/notifications/containers/Not
// import ProfileSettingsContainer from './routes/profile/containers/ProfileSettingsContainer'

export default (
<Switch>
{/*<Route path="/settings/profile" render={renderApp(<TopBarContainer toolbar={SettingsToolBar} />, <ProfileSettingsContainer />)} />*/}
{/*<Route path="/settings/system" render={renderApp(<TopBarContainer toolbar={SettingsToolBar} />, <SystemSettingsContainer />)} />*/}
<Route path="/settings/notifications" render={renderApp(<TopBarContainer toolbar={NotificationsToolBar} />, <NotificationSettingsContainer />)} />
</Switch>
{/*<Route path="/settings/profile" render={renderApp(<TopBarContainer toolbar={SettingsToolBar} />, <ProfileSettingsContainer />)} />*/},
{/*<Route path="/settings/system" render={renderApp(<TopBarContainer toolbar={SettingsToolBar} />, <SystemSettingsContainer />)} />*/},
<Route path="/settings/notifications" render={renderApp(<TopBarContainer toolbar={NotificationsToolBar} />, <NotificationSettingsContainer />)} />
)