Skip to content

Commit

Permalink
chore: migrate from tslint to eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
kennethaasan committed Apr 23, 2024
1 parent b939d54 commit baff31e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/src/containers/Sidebar/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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() ?? '';
}
Expand Down

0 comments on commit baff31e

Please sign in to comment.