Skip to content

Commit

Permalink
fix(inscription): use li in the ul
Browse files Browse the repository at this point in the history
  • Loading branch information
Daryl-L committed Aug 27, 2024
1 parent e4ee059 commit 3ff881e
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/pages/Address/AddressComp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -293,10 +293,12 @@ export const AddressOverviewCard: FC<{ address: Address }> = ({ address }) => {
switch (inscription.udtType) {
case 'omiga_inscription':
return (
<AddressOmigaInscriptionComp
account={inscription}
key={`${inscription.symbol + inscription.udtType + inscription.udtAmount}`}
/>
<li>
<AddressOmigaInscriptionComp
account={inscription}
key={`${inscription.symbol + inscription.udtType + inscription.udtAmount}`}
/>
</li>
)

default:
Expand Down

0 comments on commit 3ff881e

Please sign in to comment.