From 86510227749be0c0db156672fc8f0d8f5401505f Mon Sep 17 00:00:00 2001 From: Ines Montani Date: Fri, 4 Sep 2020 14:27:46 +0200 Subject: [PATCH] Fix outbound link [ci skip] --- website/src/components/link.js | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/website/src/components/link.js b/website/src/components/link.js index acded7d0d..178cb7105 100644 --- a/website/src/components/link.js +++ b/website/src/components/link.js @@ -1,7 +1,6 @@ import React, { Fragment } from 'react' import PropTypes from 'prop-types' import { Link as GatsbyLink } from 'gatsby' -import { OutboundLink } from 'gatsby-plugin-google-analytics' import classNames from 'classnames' import Icon from './icon' @@ -81,15 +80,9 @@ export default function Link({ const rel = isInternal ? null : 'noopener nofollow noreferrer' return ( - + {content} - + ) }