diff --git a/app/components/account/TokenAccountSection.tsx b/app/components/account/TokenAccountSection.tsx index a80f6a73..eab3f65c 100644 --- a/app/components/account/TokenAccountSection.tsx +++ b/app/components/account/TokenAccountSection.tsx @@ -425,6 +425,26 @@ function TokenAccountCard({ account, info }: { account: Account; info: TokenAcco )} + {info.delegate && ( + + Delegate + +
+ + + )} + {info.delegatedAmount && ( + + Delegated amount {typeof symbol === 'string' && `(${symbol})`} + + {info.isNative ? ( + <> + {'\u25ce'}{new BigNumber(info.delegatedAmount.uiAmountString).toFormat(9)} + + ) : <>{info.delegatedAmount.uiAmountString}} + + + )} );