-
- {poll.options.map((option, i) => this.renderOption(option, i, showResults))}
-
-
-
- {!showResults && }
-
- {showResults && !this.props.disabled && (
- ·
- )}
-
- {poll.expires_at && · {timeRemaining}}
-
-
-
- );
- }
-
-}
-
-export default injectIntl(Poll);
+export default Poll;
diff --git a/app/soapbox/components/status_content.js b/app/soapbox/components/status_content.js
index 2e6105a52..2bd5c0712 100644
--- a/app/soapbox/components/status_content.js
+++ b/app/soapbox/components/status_content.js
@@ -8,7 +8,7 @@ import { withRouter } from 'react-router-dom';
import { getSoapboxConfig } from 'soapbox/actions/soapbox';
import Icon from 'soapbox/components/icon';
-import PollContainer from 'soapbox/containers/poll_container';
+import Poll from 'soapbox/components/poll';
import { addGreentext } from 'soapbox/utils/greentext';
import { onlyEmoji } from 'soapbox/utils/rich_content';
@@ -244,7 +244,7 @@ class StatusContent extends React.PureComponent {