Skip to content

Commit

Permalink
Merge pull request #91 from onbloc/GNS-166-fix-text-style-on-transact…
Browse files Browse the repository at this point in the history
…ion-detail-page

[GNS-166] fix: Fix text style on transaction detail page
  • Loading branch information
jinoosss committed Nov 10, 2023
2 parents 7b13d74 + a55790c commit d5cc8f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/transactions/details.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -158,15 +158,15 @@ const TransactionDetails = () => {
{tx.contract.contract_list.map((v: any, i: number) => (
<ContractListBox key={v1()}>
{tx.contract.num_msgs > 1 && (
<Text type="h6" color="white" margin="0px 0px 12px">{`#${i + 1}`}</Text>
<Text type="h6" color="primary" margin="0px 0px 12px">{`#${i + 1}`}</Text>
)}
{(v?.grc20 === true || v?.pkg_path !== '/bank.MsgSend') && (
<>
<DLWrap desktop={desktop}>
<dt>Name</dt>
<dd>
<Badge>
<Text type="p4" color="white">
<Text type="p4" color="primary">
{v?.pkg_name || '-'}
</Text>
</Badge>
Expand Down

0 comments on commit d5cc8f0

Please sign in to comment.