fix(header): fixed comp name

pull/1049/head
trashtemp 2022-01-11 23:17:57 +01:00
parent 7dac2931fc
commit 8bed3bc132
1 changed files with 3 additions and 3 deletions

View File

@ -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 (
<>
<Testing>
<Container>
<UpdateIndicator style="channel" />
{channel.channel_type === "Group" && (
<>
@ -156,7 +156,7 @@ export default function HeaderActions({ channel }: ChannelHeaderProps) {
<Search size={25} />
</IconButton>
)}
</Testing>
</Container>
</>
);
}