Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -331,14 +331,15 @@ export const ConfirmSignTransaction = ({
`confirmation.transaction.${operationJson.type.toLowerCase()}` as LocalizedMessage,
)}
</Heading>
{operationJson.explicitSource ? (
{/* Source - only show if it's not the same as the signer account address */}
{operationJson.source === address ? null : (
<Box direction="vertical">
<SnapText fontWeight="medium" color="alternative">
{t('confirmation.transaction.param.source')}
</SnapText>
<Copyable value={operationJson.explicitSource} />
<Copyable value={operationJson.source} />

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

source is either the operation source or the txn source

operation source over the txn source

</Box>
) : null}
)}
{showInvocationSummary ? (
<InvocationSummary
locale={locale}
Expand Down
Loading