Skip to content

Commit

Permalink
added do not show reply address when empty
Browse files Browse the repository at this point in the history
  • Loading branch information
AceTheCreator committed Aug 12, 2024
1 parent 14620a8 commit 7d36d3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/src/containers/Operations/Operation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ export const OperationReplyInfo: React.FunctionComponent<Props> = (props) => {
{explicitChannel.address()}{' '}
</span>
</div>
) : (
) : replyAddress != null && (
<div className="text-xs text-gray-700">
Reply will be directed to the address specified at this
location:{' '}
Expand Down

0 comments on commit 7d36d3b

Please sign in to comment.