File tree 1 file changed +9
-7
lines changed
library/src/containers/Operations
1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -284,13 +284,15 @@ export const OperationReplyInfo: React.FunctionComponent<Props> = (props) => {
284
284
</ span >
285
285
</ div >
286
286
) : (
287
- < div className = "text-xs text-gray-700" >
288
- Reply will be directed to the address specified at this
289
- location:{ ' ' }
290
- < span className = "border text-orange-600 rounded text-xs ml-2 py-0 px-2" >
291
- { replyAddress }
292
- </ span >
293
- </ div >
287
+ replyAddress != null && (
288
+ < div className = "text-xs text-gray-700" >
289
+ Reply will be directed to the address specified at this
290
+ location:{ ' ' }
291
+ < span className = "border text-orange-600 rounded text-xs ml-2 py-0 px-2" >
292
+ { replyAddress }
293
+ </ span >
294
+ </ div >
295
+ )
294
296
) }
295
297
< div className = "mt-2" >
296
298
{ explicitChannel && (
You can’t perform that action at this time.
0 commit comments