bugfix cant tip fiat if no lbc balance
This commit is contained in:
parent
46f03ac30f
commit
2025dc75b1
1 changed files with 27 additions and 4 deletions
|
@ -362,7 +362,7 @@ function WalletSendTip(props: Props) {
|
||||||
return (
|
return (
|
||||||
<Form onSubmit={handleSubmit}>
|
<Form onSubmit={handleSubmit}>
|
||||||
{/* if there is no LBC balance, show user frontend to get credits */}
|
{/* if there is no LBC balance, show user frontend to get credits */}
|
||||||
{noBalance ? (
|
{1 == 2 ? (
|
||||||
<Card
|
<Card
|
||||||
title={<I18nMessage tokens={{ lbc: <LbcSymbol size={22} /> }}>Supporting content requires %lbc%</I18nMessage>}
|
title={<I18nMessage tokens={{ lbc: <LbcSymbol size={22} /> }}>Supporting content requires %lbc%</I18nMessage>}
|
||||||
subtitle={
|
subtitle={
|
||||||
|
@ -479,8 +479,10 @@ function WalletSendTip(props: Props) {
|
||||||
<Button button="link" label={__('Cancel')} onClick={() => setIsConfirming(false)} />
|
<Button button="link" label={__('Cancel')} onClick={() => setIsConfirming(false)} />
|
||||||
</div>
|
</div>
|
||||||
</>
|
</>
|
||||||
) : (
|
// only show the prompt to earn more if its lbc or boost tab and no balance
|
||||||
<>
|
// otherwise you can show the full prompt
|
||||||
|
) : (!((activeTab === TAB_LBC || activeTab === TAB_BOOST) && noBalance)
|
||||||
|
? <>
|
||||||
<div className="section">
|
<div className="section">
|
||||||
<ChannelSelector />
|
<ChannelSelector />
|
||||||
</div>
|
</div>
|
||||||
|
@ -591,7 +593,28 @@ function WalletSendTip(props: Props) {
|
||||||
) : (
|
) : (
|
||||||
<div className="help">{__('The payment will be made from your saved card')}</div>
|
<div className="help">{__('The payment will be made from your saved card')}</div>
|
||||||
)}
|
)}
|
||||||
</>
|
</> : <>
|
||||||
|
<Card
|
||||||
|
title={<I18nMessage tokens={{ lbc: <LbcSymbol size={22} /> }}>Supporting content requires %lbc%</I18nMessage>}
|
||||||
|
subtitle={
|
||||||
|
<I18nMessage tokens={{ lbc: <LbcSymbol /> }}>
|
||||||
|
With %lbc%, you can send tips to your favorite creators, or help boost their content for more people to
|
||||||
|
see.
|
||||||
|
</I18nMessage>
|
||||||
|
}
|
||||||
|
actions={
|
||||||
|
<div className="section__actions">
|
||||||
|
<Button
|
||||||
|
icon={ICONS.REWARDS}
|
||||||
|
button="primary"
|
||||||
|
label={__('Earn Rewards')}
|
||||||
|
navigate={`/$/${PAGES.REWARDS}`}
|
||||||
|
/>
|
||||||
|
<Button icon={ICONS.BUY} button="secondary" label={__('Buy/Swap Credits')} navigate={`/$/${PAGES.BUY}`} />
|
||||||
|
<Button button="link" label={__('Nevermind')} onClick={closeModal} />
|
||||||
|
</div>
|
||||||
|
}
|
||||||
|
/></>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
|
|
Loading…
Reference in a new issue