diff --git a/app/javascript/mastodon/components/status_action_bar.jsx b/app/javascript/mastodon/components/status_action_bar.jsx
index 574dafbb99..5afb313bb1 100644
--- a/app/javascript/mastodon/components/status_action_bar.jsx
+++ b/app/javascript/mastodon/components/status_action_bar.jsx
@@ -384,7 +384,6 @@ class StatusActionBar extends ImmutablePureComponent {
);
-<<<<<<< HEAD
const canReact = signedIn && status.get('reactions').filter(r => r.get('count') > 0 && r.get('me')).size < maxReactions;
const reactButton = (
);
- return (
-
-
-
-
- {
- signedIn
- ?
- : reactButton
- }
-
-=======
const isReply = status.get('in_reply_to_account_id') === status.getIn(['account', 'id']);
return (
@@ -415,8 +402,12 @@ class StatusActionBar extends ImmutablePureComponent {
+ {
+ signedIn
+ ?
+ : reactButton
+ }
->>>>>>> 59893a4eabb7edc836a6fe87e0fcad62e56d66ed
{filterButton}