+ {isActive
+ ? `Your card is backed by ${note.shares.toFixed(2)} shares of ${note.symbol}. We protect these shares with a zero-cost collar so your downside is limited. Pay back anytime to release your shares.`
+ : `This card was backed by ${note.shares.toFixed(2)} shares of ${note.symbol}, protected with a zero-cost collar.`}
+
- Repay by {formatDate(collar.expiryDate)} to
- unlock your shares. If not repaid, shares are sold to settle.
+ {mode === 'send' ? (
+ <>Repay by {formatDate(collar.expiryDate)} to unlock your shares. If not repaid, shares are sold to settle.>
+ ) : (
+ <>Pay back by {formatDate(collar.expiryDate)} to release your shares. No interest, no fees, ever.>
+ )}
{/* How does this work? */}
@@ -552,7 +555,7 @@ export default function SpendFlow({ mode, selectedHolding, holdings, prices, cur
: sendStatus === 'signing' ? 'Signing...'
: sendStatus === 'submitting' ? 'Submitting...'
: 'Processing...')
- : (mode === 'send' ? `Send ${formatUsd(val)}` : `Get Card · ${formatUsd(val)} at 0%`)}
+ : (mode === 'send' ? `Send ${formatUsd(val)}` : `Get ${formatUsd(val)} Card`)}