link_footer.js: remove mapDispatchToProps call

This commit is contained in:
Haelwenn (lanodan) Monnier 2019-10-01 09:34:13 +02:00
parent bb02a3e50f
commit e8d10394ed
No known key found for this signature in database
GPG key ID: D5B7A8E43C997DEE

View file

@ -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 {
</div>
);
}
};