Skip to content

Commit

Permalink
do not display reply address if null
Browse files Browse the repository at this point in the history
  • Loading branch information
charbonnierg committed Mar 6, 2024
1 parent 9776b9c commit 93ac6fd
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 @@ -292,7 +292,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 93ac6fd

Please sign in to comment.