disable reaction button when not signed in

This commit is contained in:
fef 2022-12-03 16:55:37 +00:00 committed by Jeremy Kescher
parent 01723aef2b
commit 245f5b3f2f
No known key found for this signature in database
GPG key ID: 80A419A7A613DFA4

View file

@ -167,7 +167,11 @@ const mapDispatchToProps = (dispatch, { intl, contextType }) => ({
}, },
onReactionAdd (statusId, name, url) { onReactionAdd (statusId, name, url) {
dispatch(addReaction(statusId, name, url)); const { signedIn } = this.context.identity;
if (signedIn) {
dispatch(addReaction(statusId, name, url));
}
}, },
onReactionRemove (statusId, name) { onReactionRemove (statusId, name) {