diff options
author | Thibaut Girka <thib@sitedethib.com> | 2019-05-19 23:02:32 +0200 |
---|---|---|
committer | ThibG <thib@sitedethib.com> | 2019-05-19 23:24:53 +0200 |
commit | 2cd7bfac239561ab7ad119d558a6508e66e4ad22 (patch) | |
tree | 19abdd4627883ba4f1c844987d8227364b20eb52 /app/javascript/flavours/glitch/containers | |
parent | 0998e3ade8b03174c0a69ba4f78b31f92ccc1ade (diff) |
Use glitch-soc's poll component instead of upstream's
Diffstat (limited to 'app/javascript/flavours/glitch/containers')
-rw-r--r-- | app/javascript/flavours/glitch/containers/poll_container.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/flavours/glitch/containers/poll_container.js b/app/javascript/flavours/glitch/containers/poll_container.js index cd7216de7..da93cc905 100644 --- a/app/javascript/flavours/glitch/containers/poll_container.js +++ b/app/javascript/flavours/glitch/containers/poll_container.js @@ -1,5 +1,5 @@ import { connect } from 'react-redux'; -import Poll from 'mastodon/components/poll'; +import Poll from 'flavours/glitch/components/poll'; const mapStateToProps = (state, { pollId }) => ({ poll: state.getIn(['polls', pollId]), |