diff --git a/library/src/containers/Sidebar/Sidebar.tsx b/library/src/containers/Sidebar/Sidebar.tsx index 9a60c3ae..e65eee67 100644 --- a/library/src/containers/Sidebar/Sidebar.tsx +++ b/library/src/containers/Sidebar/Sidebar.tsx @@ -264,7 +264,7 @@ const OperationsList: React.FunctionComponent = () => { const operationChannels = operationChannel.all(); const channelAddress = operationChannels[0]?.address() ?? ''; const operationSummary = operation.summary(); - label = operationSummary ? operationSummary : channelAddress; + label = operationSummary ?? channelAddress; } else { label = operation.id() ?? ''; }