From e8d10394ed670bcf35ea1aa015a53f19c638a257 Mon Sep 17 00:00:00 2001 From: "Haelwenn (lanodan) Monnier" Date: Tue, 1 Oct 2019 09:34:13 +0200 Subject: [PATCH] link_footer.js: remove mapDispatchToProps call --- .../flavours/glitch/features/ui/components/link_footer.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/app/javascript/flavours/glitch/features/ui/components/link_footer.js b/app/javascript/flavours/glitch/features/ui/components/link_footer.js index aef73896b..e03405ae1 100644 --- a/app/javascript/flavours/glitch/features/ui/components/link_footer.js +++ b/app/javascript/flavours/glitch/features/ui/components/link_footer.js @@ -1,11 +1,9 @@ -import { connect } from 'react-redux'; import React from 'react'; import PropTypes from 'prop-types'; import { FormattedMessage, injectIntl } from 'react-intl'; import { Link } from 'react-router-dom'; export default @injectIntl -@connect(null, mapDispatchToProps) class LinkFooter extends React.PureComponent { static propTypes = { @@ -30,5 +28,4 @@ class LinkFooter extends React.PureComponent { ); } - };