From 4b4bb80a866d224ed6f9b1d40158d71bb2863d0b Mon Sep 17 00:00:00 2001 From: Ace <40604284+AceTheCreator@users.noreply.github.com> Date: Wed, 21 Aug 2024 14:28:46 -0500 Subject: [PATCH] fix: do not show empty reply address (#1037) --- library/src/containers/Operations/Operation.tsx | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/library/src/containers/Operations/Operation.tsx b/library/src/containers/Operations/Operation.tsx index d262a3a1a..26dc958d7 100644 --- a/library/src/containers/Operations/Operation.tsx +++ b/library/src/containers/Operations/Operation.tsx @@ -284,13 +284,15 @@ export const OperationReplyInfo: React.FunctionComponent = (props) => { ) : ( -
- Reply will be directed to the address specified at this - location:{' '} - - {replyAddress} - -
+ replyAddress != null && ( +
+ Reply will be directed to the address specified at this + location:{' '} + + {replyAddress} + +
+ ) )}
{explicitChannel && (