mirror of
https://github.com/stoatchat/for-legacy-web.git
synced 2026-03-08 01:45:28 +00:00
fix(header): fixed comp name
This commit is contained in:
@@ -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>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user