diff --git a/src/core/client/stream/tabs/comments/components/ReactionButton.tsx b/src/core/client/stream/tabs/comments/components/ReactionButton.tsx index 206c0e2ab..559ba34f5 100644 --- a/src/core/client/stream/tabs/comments/components/ReactionButton.tsx +++ b/src/core/client/stream/tabs/comments/components/ReactionButton.tsx @@ -3,7 +3,7 @@ import React from "react"; import { Button, ButtonIcon, MatchMedia } from "talk-ui/components"; interface ReactionButtonProps { - onButtonClick: () => {}; + onClick: () => void; totalReactions: number; reacted: boolean | null; label: string; @@ -17,7 +17,7 @@ class ReactionButton extends React.Component { public render() { const { totalReactions, reacted } = this.props; return ( -