Skip to content

Commit

Permalink
feature(wallet-mobile): new tx review multi receivers
Browse files Browse the repository at this point in the history
  • Loading branch information
banklesss committed Nov 12, 2024
1 parent 8da2b90 commit 72a3d43
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,12 @@ export const OverviewTab = ({
operationsFee={operations.totalFee}
/>

{notOwnedOutputs.length === 1 && (
{notOwnedOutputs.length === 1 ? (
<OneExternalPartySection receiverCustomTitle={receiverCustomTitle} output={notOwnedOutputs[0]} />
) : (
<MultiExternalPartiesSection outputs={notOwnedOutputs} />
)}

{notOwnedOutputs.length > 1 && <MultiExternalPartiesSection outputs={notOwnedOutputs} />}

<OperationsSection operations={operations.components} extraOperations={extraOperations} />

<Details details={details} />
Expand Down

0 comments on commit 72a3d43

Please sign in to comment.