From 5cbe99eced65594f6f82102187f1d5f75e86ebcf Mon Sep 17 00:00:00 2001 From: Bouncey Date: Thu, 20 Sep 2018 10:23:40 +0100 Subject: [PATCH] fix(links): Use relative links --- client/src/components/Header/components/SignedIn.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/client/src/components/Header/components/SignedIn.js b/client/src/components/Header/components/SignedIn.js index b61ab15da4..8bba6033e0 100644 --- a/client/src/components/Header/components/SignedIn.js +++ b/client/src/components/Header/components/SignedIn.js @@ -1,5 +1,6 @@ import React from 'react'; import PropTypes from 'prop-types'; +import { Link } from 'gatsby'; import { connect } from 'react-redux'; import { createSelector } from 'reselect'; @@ -11,9 +12,9 @@ const mapStateToProps = createSelector(userSelector, ({ picture }) => ({ function SignedIn({ picture }) { return ( - + - + ); }