Skip to content
This repository was archived by the owner on Feb 8, 2026. It is now read-only.

Commit 40637b1

Browse files
committed
fix: lightning channel type update
1 parent 0703047 commit 40637b1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/hooks/lightning.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,6 @@ export const useLightningChannelName = (
140140
return `Connection ${index + 1}`;
141141
} else {
142142
const shortChannelId = ellipsis(channel.channel_id, 10);
143-
return channel.inbound_scid_alias?.toString() ?? shortChannelId;
143+
return channel.inbound_scid_alias ?? shortChannelId;
144144
}
145145
};

0 commit comments

Comments
 (0)