Skip to content

Commit

Permalink
Merge branch 'master' into url-check
Browse files Browse the repository at this point in the history
  • Loading branch information
Jasonvdb committed Oct 19, 2023
2 parents 5072022 + 40637b1 commit 1783139
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hooks/lightning.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,6 @@ export const useLightningChannelName = (
return `Connection ${index + 1}`;
} else {
const shortChannelId = ellipsis(channel.channel_id, 10);
return channel.inbound_scid_alias?.toString() ?? shortChannelId;
return channel.inbound_scid_alias ?? shortChannelId;
}
};

0 comments on commit 1783139

Please sign in to comment.