mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-25 08:30:58 -05:00
fix(header): fixed comp name
This commit is contained in:
parent
3d68dab0b4
commit
3b4227d4ba
1 changed files with 3 additions and 3 deletions
|
@ -26,7 +26,7 @@ import IconButton from "../../../components/ui/IconButton";
|
||||||
|
|
||||||
import { ChannelHeaderProps } from "../ChannelHeader";
|
import { ChannelHeaderProps } from "../ChannelHeader";
|
||||||
|
|
||||||
const Testing = styled.div`
|
const Container = styled.div`
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: 16px;
|
gap: 16px;
|
||||||
`;
|
`;
|
||||||
|
@ -108,7 +108,7 @@ export default function HeaderActions({ channel }: ChannelHeaderProps) {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<Testing>
|
<Container>
|
||||||
<UpdateIndicator style="channel" />
|
<UpdateIndicator style="channel" />
|
||||||
{channel.channel_type === "Group" && (
|
{channel.channel_type === "Group" && (
|
||||||
<>
|
<>
|
||||||
|
@ -156,7 +156,7 @@ export default function HeaderActions({ channel }: ChannelHeaderProps) {
|
||||||
<Search size={25} />
|
<Search size={25} />
|
||||||
</IconButton>
|
</IconButton>
|
||||||
)}
|
)}
|
||||||
</Testing>
|
</Container>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue