add staking page

This commit is contained in:
2026-06-16 18:43:06 +03:00
parent 9dc4785af8
commit 8e0134f824

View File

@@ -48,7 +48,7 @@ export function PositionsPanel({ chain, onUnstakeEth, onUnstakeSol, onClaim, uns
</div>
<div className={styles.body}>
{!isLoading && !isError && data?.chain === 'ETH' && !empty && (parseFloat(data.stEthBalanceWeiHuman) || 0) > 0.00000000000001 && <WithdrawNotice compact />}
{!isLoading && !isError && data?.chain === 'ETH' && !empty && (parseFloat(data.stEthBalanceWeiHuman) || 0) > 0.00000000000001 ? <WithdrawNotice compact /> : <p>На данный момент у Вас нет активных позиций стейкинга.</p>}
{isLoading && <Spinner label="Загрузка позиций" />}