diff --git a/src/pages/channels/actions/HeaderActions.tsx b/src/pages/channels/actions/HeaderActions.tsx index 0d3be882..1d8d3329 100644 --- a/src/pages/channels/actions/HeaderActions.tsx +++ b/src/pages/channels/actions/HeaderActions.tsx @@ -26,7 +26,7 @@ import IconButton from "../../../components/ui/IconButton"; import { ChannelHeaderProps } from "../ChannelHeader"; -const Testing = styled.div` +const Container = styled.div` display: flex; gap: 16px; `; @@ -108,7 +108,7 @@ export default function HeaderActions({ channel }: ChannelHeaderProps) { return ( <> - + {channel.channel_type === "Group" && ( <> @@ -156,7 +156,7 @@ export default function HeaderActions({ channel }: ChannelHeaderProps) { )} - + ); }