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 ? (
}}> - This channel requires a minimum tip of %lbc% to post a comment. + This channel requires a minimum tip of %lbc% per comment. + +
+ ) : null; + + const MinSuperNotice = + minSuper !== 0 && livestream ? ( +
+ }}> + This channel requires a minimum of %lbc% for hyperchats to be listed.
) : null; @@ -366,6 +376,7 @@ export function CommentCreate(props: Props) { />