Skip to content

Commit

Permalink
Fix: Missing wallet details
Browse files Browse the repository at this point in the history
Signed-off-by: George J Padayatti <[email protected]>
  • Loading branch information
georgepadayatti committed May 1, 2024
1 parent b91d777 commit 2f9f297
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/views/company-views/components/walletdetails/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,10 @@ export const WalletDetailsPage = (props: { onClose: any; open: boolean; showWall
<strong>{t('Wallet Details')}</strong>
</p>
<StyledWalletDiv>
{t('Agent URL')}: <StyledAnchor style={{wordBreak: 'break-word'}}>{defaultWalletData.AgentServiceEndpoint}</StyledAnchor>
{t('Agent URL')}: <StyledAnchor style={{wordBreak: 'break-word'}}>{defaultWalletData.agentServiceEndpoint}</StyledAnchor>
</StyledWalletDiv>
<StyledWalletDiv>{t('Ledger Name')}: {defaultWalletData.LedgerName}</StyledWalletDiv>
<StyledWalletDiv>{t('Ledger URL')}:<StyledAnchor target={"_blank"} href={defaultWalletData.LedgerURL}>{defaultWalletData.LedgerURL}</StyledAnchor></StyledWalletDiv>
<StyledWalletDiv>{t('Ledger Name')}: {defaultWalletData.ledgerName}</StyledWalletDiv>
<StyledWalletDiv>{t('Ledger URL')}: <StyledAnchor target={"_blank"} href={defaultWalletData.ledgerURL}>{defaultWalletData.ledgerURL}</StyledAnchor></StyledWalletDiv>
<StyledWalletDiv style={{display: 'flex', justifyContent: 'space-between'}}>
<span>{t('Connection URL')}:</span>
<CopyToClipboard
Expand Down

0 comments on commit 2f9f297

Please sign in to comment.