diff --git a/bigbluebutton-html5/imports/ui/components/actions-bar/reactions-button/component.jsx b/bigbluebutton-html5/imports/ui/components/actions-bar/reactions-button/component.jsx
index afa7fc5d78..6147de000f 100644
--- a/bigbluebutton-html5/imports/ui/components/actions-bar/reactions-button/component.jsx
+++ b/bigbluebutton-html5/imports/ui/components/actions-bar/reactions-button/component.jsx
@@ -123,9 +123,18 @@ const ReactionsButton = (props) => {
customStyles: {...actionCustomStyles, width: 'auto'},
});
- const icon = currentUserReaction === 'none' ? 'hand' : null;
+ const icon = !raiseHand && currentUserReaction === 'none' ? 'hand' : null;
const currentUserReactionEmoji = reactions.find(({ native }) => native === currentUserReaction);
- const customIcon = !icon ? : null;
+
+ let customIcon = null;
+
+ if (raiseHand) {
+ customIcon = ;
+ } else {
+ if (!icon) {
+ customIcon = ;
+ }
+ }
return (