diff --git a/client/src/components/Header/components/SignedIn.js b/client/src/components/Header/components/SignedIn.js
index 66efeea117..9c4aa6e45b 100644
--- a/client/src/components/Header/components/SignedIn.js
+++ b/client/src/components/Header/components/SignedIn.js
@@ -1,22 +1,11 @@
import React from 'react';
import PropTypes from 'prop-types';
import { Link } from 'gatsby';
-import { connect } from 'react-redux';
-import { createSelector } from 'reselect';
-import { userSelector } from '../../../redux';
-
-const mapStateToProps = createSelector(
- userSelector,
- ({ picture }) => ({
- picture
- })
-);
-
-function SignedIn({ picture }) {
+function SignedIn() {
return (
-
-
+
+ Settings
);
}
@@ -26,4 +15,4 @@ SignedIn.propTypes = {
picture: PropTypes.string
};
-export default connect(mapStateToProps)(SignedIn);
+export default SignedIn;