Small text fixes (#440)
* 🐛 text fix on fund for new account * 🐛 make toggle account-wide lending on new-account
This commit is contained in:
parent
dee7f5936b
commit
eb5425ee4c
@ -186,8 +186,8 @@ export default function AccountFundContent(props: Props) {
|
||||
<SwitchAutoLend
|
||||
className='pt-4 mt-4 border border-transparent border-t-white/10'
|
||||
accountId={props.accountId}
|
||||
value={isLending}
|
||||
onChange={toggleIsLending}
|
||||
value={!props.isFullPage ? isLending : undefined}
|
||||
onChange={!props.isFullPage ? toggleIsLending : undefined}
|
||||
/>
|
||||
</div>
|
||||
<Button
|
||||
|
@ -26,7 +26,7 @@ export default function AccountFundFullPage() {
|
||||
return (
|
||||
<FullOverlayContent
|
||||
title={`Fund Credit Account #${selectedAccountId}`}
|
||||
copy='In order to start trading with this account, you need to deposit funds.'
|
||||
copy='In order to start using this account, you need to deposit funds.'
|
||||
docs='fund'
|
||||
>
|
||||
<Card className='w-full p-6 bg-white/5'>
|
||||
|
Loading…
Reference in New Issue
Block a user