diff --git a/src/components/common/ChannelIcon.tsx b/src/components/common/ChannelIcon.tsx index b49a52a5..48a88400 100644 --- a/src/components/common/ChannelIcon.tsx +++ b/src/components/common/ChannelIcon.tsx @@ -51,6 +51,12 @@ export default observer( } } + // The border radius of the channel icon, if it's a server-channel it should be square (undefined). + let borderRadius; + if (!isServerChannel) { + borderRadius = "--border-radius-half"; + } + return ( // ! TODO: replace fallback with +