Skip to content

Commit

Permalink
Merge branch 'master' into iw/supply-warning
Browse files Browse the repository at this point in the history
  • Loading branch information
IanWoodard committed Jul 14, 2024
2 parents a3e5465 + 4edd5d0 commit f2bf5a2
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions earn/src/components/markets/borrow/BorrowingWidget.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -423,14 +423,16 @@ export default function BorrowingWidget(props: BorrowingWidgetProps) {
<li className='flex items-center gap-2 mb-1'>
{selectedCollateral == null ? <Circle /> : <CheckIcon height={20} width={20} />}
<Text size='M' weight='medium' color={SECONDARY_COLOR}>
1. Select an asset to use as collateral. Note that collateral is <strong>not</strong> lent out, and LLTVs
can change up to 1% per day.
1. Select an asset to use as <strong>collateral</strong>.{' '}
<em>
Note that collateral is <strong>not</strong> lent out, and LLTVs can change up to 1% per day.
</em>
</Text>
</li>
<li className='flex items-center gap-2 mb-1'>
{selectedBorrows == null ? <Circle /> : <CheckIcon height={20} width={20} />}
<Text size='M' weight='medium' color={SECONDARY_COLOR}>
2. Select an asset to borrow. APRs are variable based on utilization.
2. Select an asset to <strong>borrow</strong>. <em>APR is variable and based on utilization.</em>
</Text>
</li>
<li className='flex items-center gap-2'>
Expand Down

0 comments on commit f2bf5a2

Please sign in to comment.