about summary refs log tree commit diff
path: root/app/javascript/mastodon/features/compose/index.js
diff options
context:
space:
mode:
authorNolan Lawson <nolan@nolanlawson.com>2017-10-07 17:55:58 -0700
committerEugen Rochko <eugen@zeonfederated.com>2017-10-08 02:55:58 +0200
commit7de6d269d21e0ed7a3ede7c3d17089726a29d841 (patch)
tree917fab8d5e9e8d3bb37c154e11c56532fad7789c /app/javascript/mastodon/features/compose/index.js
parent684001d729a4684ab00a24e31ec39f8cae6e37a7 (diff)
Use ES module build of react-router-dom (#5264)
Diffstat (limited to 'app/javascript/mastodon/features/compose/index.js')
-rw-r--r--app/javascript/mastodon/features/compose/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/mastodon/features/compose/index.js b/app/javascript/mastodon/features/compose/index.js
index 0b686ddb3..6166fce3c 100644
--- a/app/javascript/mastodon/features/compose/index.js
+++ b/app/javascript/mastodon/features/compose/index.js
@@ -5,7 +5,7 @@ import PropTypes from 'prop-types';
 import ImmutablePropTypes from 'react-immutable-proptypes';
 import { connect } from 'react-redux';
 import { mountCompose, unmountCompose } from '../../actions/compose';
-import Link from 'react-router-dom/Link';
+import { Link } from 'react-router-dom';
 import { injectIntl, defineMessages } from 'react-intl';
 import SearchContainer from './containers/search_container';
 import Motion from 'react-motion/lib/Motion';