We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0703047 commit 40637b1Copy full SHA for 40637b1
src/hooks/lightning.ts
@@ -140,6 +140,6 @@ export const useLightningChannelName = (
140
return `Connection ${index + 1}`;
141
} else {
142
const shortChannelId = ellipsis(channel.channel_id, 10);
143
- return channel.inbound_scid_alias?.toString() ?? shortChannelId;
+ return channel.inbound_scid_alias ?? shortChannelId;
144
}
145
};
0 commit comments