Skip to content

Commit

Permalink
chore: add missing divisibility prop in delegation section (#218)
Browse files Browse the repository at this point in the history
  • Loading branch information
fedeerbes committed Apr 23, 2024
1 parent 59de2a2 commit 1250117
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/app/components/confirmBtcTransaction/delegateSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,11 @@ function DelegateSection({ delegations }: Props) {
</Header>
{delegations.map((delegation) => (
<RowContainer key={delegation.runeName}>
<RuneAmount tokenName={delegation.runeName} amount={String(delegation.amount)} />
<RuneAmount
tokenName={delegation.runeName}
amount={String(delegation.amount)}
divisibility={delegation.divisibility}
/>
</RowContainer>
))}
<WarningButton type="button" onClick={() => setShowDelegationInfo((prevState) => !prevState)}>
Expand Down

0 comments on commit 1250117

Please sign in to comment.