fix: implemented Raffas feedback (#465)

This commit is contained in:
Linkie Link 2023-09-13 11:45:07 +02:00 committed by GitHub
parent 2a06d896ca
commit 8cf3eec143
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

View File

@ -9,8 +9,8 @@ export default function LendIntro() {
text={ text={
<> <>
By <span className='text-white'>Lending</span> your assets, you&apos;ll earn attractive By <span className='text-white'>Lending</span> your assets, you&apos;ll earn attractive
interest (APY) without impacting your LTV. It&apos;s a win-win situation - don&apos;t miss interest (APY) without impacting your loan to value (LTV). It&apos;s a win-win situation -
out on this easy opportunity to grow your holdings! don&apos;t miss out on this easy opportunity to grow your holdings!
</> </>
} }
> >

View File

@ -251,9 +251,9 @@ export default function SettingsModal() {
label='Tutorial' label='Tutorial'
description={ description={
<Text size='xs' className='text-white/50'> <Text size='xs' className='text-white/50'>
Show tutorial elements in the UI. Like the{' '} Show tutorial elements in the UI. Like the page info boxes or{' '}
<TextLink <TextLink
title='Get Started Modal' title='Get Started'
color='secondary' color='secondary'
textSize='extraSmall' textSize='extraSmall'
className='leading-4 text-white hover:underline' className='leading-4 text-white hover:underline'
@ -261,7 +261,7 @@ export default function SettingsModal() {
useStore.setState({ settingsModal: false, getStartedModal: true }) useStore.setState({ settingsModal: false, getStartedModal: true })
}} }}
> >
Get Started Modal. Get Started.
</TextLink> </TextLink>
</Text> </Text>
} }

View File

@ -28,7 +28,7 @@ export default function SwitchAutoLend(props: Props) {
label='Lend assets to earn yield' label='Lend assets to earn yield'
value={props.value !== undefined ? props.value : isAutoLendEnabled} value={props.value !== undefined ? props.value : isAutoLendEnabled}
onChange={handleToggle} onChange={handleToggle}
tooltip={`Fund your account and lend assets effortlessly! By lending, you'll earn attractive interest (APY) without impacting your LTV. It's a win-win situation - don't miss out on this easy opportunity to grow your holdings!`} tooltip={`Fund your account and lend assets effortlessly! By lending, you'll earn attractive interest (APY) without impacting your loan to value (LTV). It's a win-win situation - don't miss out on this easy opportunity to grow your holdings!`}
/> />
</div> </div>
) )