This commit is contained in:
github-actions[bot] 2022-10-08 17:52:25 +00:00 committed by GitHub
commit 4f2ce031b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 6 deletions

View File

@ -35,8 +35,8 @@ export function LoansModal(props: {
</span> </span>
<span className={'text-indigo-700'}> What is an example?</span> <span className={'text-indigo-700'}> What is an example?</span>
<span className={'ml-2'}> <span className={'ml-2'}>
For example, if you bet M$1000 on "Will I become a millionare?" For example, if you bet M$1000 on "Will I become a millionare?", you
today, you will get M$20 back tomorrow. will get M$20 back tomorrow.
</span> </span>
<span className={'ml-2'}> <span className={'ml-2'}>
Previous loans count against your total bet amount. So on the next Previous loans count against your total bet amount. So on the next

View File

@ -469,8 +469,11 @@ function IncomeNotificationItem(props: {
simple ? ( simple ? (
<span className={'ml-1 font-bold'}>🏦 Loan</span> <span className={'ml-1 font-bold'}>🏦 Loan</span>
) : ( ) : (
<SiteLink className={'ml-1 font-bold'} href={'/loans'}> <SiteLink
🏦 Loan className={'relative ml-1 font-bold'}
href={`/${sourceUserUsername}/?show=loans`}
>
🏦 Loan <span className="font-normal">(learn more)</span>
</SiteLink> </SiteLink>
) )
) : sourceType === 'betting_streak_bonus' ? ( ) : sourceType === 'betting_streak_bonus' ? (
@ -478,8 +481,8 @@ function IncomeNotificationItem(props: {
<span className={'ml-1 font-bold'}>{bettingStreakText}</span> <span className={'ml-1 font-bold'}>{bettingStreakText}</span>
) : ( ) : (
<SiteLink <SiteLink
className={'ml-1 font-bold'} className={'relative ml-1 font-bold'}
href={'/betting-streak-bonus'} href={`/${sourceUserUsername}/?show=betting-streak`}
> >
{bettingStreakText} {bettingStreakText}
</SiteLink> </SiteLink>