Skip to content

Commit

Permalink
fixed lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
AceTheCreator committed Aug 12, 2024
1 parent e60c245 commit 71848bc
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions library/src/containers/Operations/Operation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -283,14 +283,16 @@ 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:{' '}
<span className="border text-orange-600 rounded text-xs ml-2 py-0 px-2">
{replyAddress}
</span>
</div>
) : (
replyAddress != null && (
<div className="text-xs text-gray-700">
Reply will be directed to the address specified at this
location:{' '}
<span className="border text-orange-600 rounded text-xs ml-2 py-0 px-2">
{replyAddress}
</span>
</div>
)
)}
<div className="mt-2">
{explicitChannel && (
Expand Down

0 comments on commit 71848bc

Please sign in to comment.