src/views/article/article__activity.tsx [295:303]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      />
      {reactionState.isReactionsPanelVisible && (
        <ReactionsPanel
          onSelect={(reaction: Reaction) => {
            selectReaction(reactionState.currentComment as IssueComment, reaction);
          }}
          onHide={hideReactionsPanel}
        />
      )}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/views/issue/activity/issue__activity-stream.tsx [233:242]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      />

      {reactionState.isReactionsPanelVisible && (
        <ReactionsPanel
          onSelect={(reaction: Reaction) => {
            selectReaction(reactionState.currentComment as IssueComment, reaction);
          }}
          onHide={hideReactionsPanel}
        />
      )}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



