feat: 修复bug
This commit is contained in:
parent
91807a2e3e
commit
2902d9aaa4
|
|
@ -91,6 +91,7 @@ const BoardCard: React.FC<NodeCardProps> = ({ board, account }) => {
|
|||
return (
|
||||
<FCard>
|
||||
<CardHeading name={t(board.name)} img={board.img} tokenSymbol={board.tokenSymbol} />
|
||||
{account && (
|
||||
<div>
|
||||
<FlexText name={t('HCC Currency amount')} value={board.userData?.amount} />
|
||||
{board.userData?.name === 'Board' ? (
|
||||
|
|
@ -100,6 +101,7 @@ const BoardCard: React.FC<NodeCardProps> = ({ board, account }) => {
|
|||
)}
|
||||
<FlexText name={t('possess LP')} value={board.userData?.rewardDebt} />
|
||||
</div>
|
||||
)}
|
||||
<CardActionsContainer board={board} account={account} />
|
||||
{/* <Divider />
|
||||
<ExpandableSectionButton
|
||||
|
|
|
|||
Loading…
Reference in New Issue