Skip to content

Commit 7d19c90

Browse files
lukaw3dcsillag
authored andcommitted
Fix AdaptiveTrimmer in consensus account
1 parent 8dadbb4 commit 7d19c90

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

src/app/components/Account/ConsensusAccountDetailsView.tsx

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -61,13 +61,15 @@ export const ConsensusAccountDetailsView: FC<ConsensusAccountDetailsViewProps> =
6161
</Box>
6262
</StyledListTitleWithAvatar>
6363
<dd>
64-
<ConsensusAccountLink
65-
alwaysTrim={false}
66-
network={account.network}
67-
address={account.address}
68-
highlightPattern={highlightPattern}
69-
/>
70-
<CopyToClipboard value={account.address} />
64+
<Box sx={{ display: 'inline-flex', alignItems: 'center' }}>
65+
<ConsensusAccountLink
66+
alwaysTrim={false}
67+
network={account.network}
68+
address={account.address}
69+
highlightPattern={highlightPattern}
70+
/>
71+
<CopyToClipboard value={account.address} />
72+
</Box>
7173
</dd>
7274
<dt>
7375
<strong>{t('account.totalBalance')}</strong>

0 commit comments

Comments
 (0)