diff -r a2e61192db50 -r fcce52a159bc client/src/components/Navbar.js
--- a/client/src/components/Navbar.js Mon Aug 27 19:53:40 2018 +0200
+++ b/client/src/components/Navbar.js Tue Aug 28 16:57:31 2018 +0200
@@ -6,44 +6,14 @@
import { withRouter } from 'react-router';
import { bindActionCreators } from 'redux';
// import logo from './logo.svg';
-import { NavDropdown, MenuItem } from 'react-bootstrap';
import Modal from 'react-modal';
import * as authActions from '../actions/authActions';
import { forceSync } from '../actions/networkActions';
import { groupSetCurrent } from '../actions/groupActions';
import { isAuthenticated, getCurrentUser, getOnline, getCurrentGroup, getGroups } from '../selectors/authSelectors';
import { isSynchronizing, isSynchronized } from '../selectors/syncSelectors';
-
-const LoginNav = ({isAuthenticated, currentUser, history, authActions, onLogout}) => {
-
- const onClickSettings = (e) => {
- e.preventDefault();
- history.push('/settings');
- }
-
- const onClickLogin = (e) => {
- e.preventDefault();
- history.push('/login');
- }
-
- if (isAuthenticated) {
- return (
-