refine wallet limit banner slightly

This commit is contained in:
keyan 2023-12-21 17:40:11 -06:00
parent 01984c0b43
commit 4c36b7813a
1 changed files with 7 additions and 3 deletions

View File

@ -76,10 +76,14 @@ export function WalletLimitBanner () {
return (
<Alert className={styles.banner} key='info' variant='warning'>
<Alert.Heading>
Your wallet is over the current limit ({numWithUnits(msatsToSats(BALANCE_LIMIT_MSATS))})
</Alert.Heading>
<p className='mb-1'>
You will not be able to deposit any more funds or receive sats from <strong>outside</strong> of SN.
</p>
<p>
Your wallet is over the current limit ({numWithUnits(msatsToSats(BALANCE_LIMIT_MSATS))}).<br />
You will not be able to deposit any more funds or receive sats from outside of SN.<br />
Please withdraw sats to restore full wallet functionality.
Please spend or withdraw sats to restore full wallet functionality.
</p>
</Alert>
)