mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-21 22:50:59 -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";
|
||||
|
||||
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>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue