diff --git a/ui/component/commentCreate/view.jsx b/ui/component/commentCreate/view.jsx index ad1b3d638..e2589fedb 100644 --- a/ui/component/commentCreate/view.jsx +++ b/ui/component/commentCreate/view.jsx @@ -98,6 +98,7 @@ export function CommentCreate(props: Props) { const [shouldDisableReviewButton, setShouldDisableReviewButton] = React.useState(); const channelId = getChannelIdFromClaim(claim); const channelSettings = channelId ? settingsByChannelId[channelId] : undefined; + const minSuper = (channelSettings && channelSettings.min_tip_amount_super_chat) || 0; const minTip = (channelSettings && channelSettings.min_tip_amount_comment) || 0; const minTipMet = minTip === 0 || tipAmount >= minTip; @@ -105,7 +106,16 @@ export function CommentCreate(props: Props) { minTip !== 0 ? (