chore: remove current user component

This commit is contained in:
Tristan Yang
2022-08-15 10:08:32 +08:00
parent aada865873
commit f1cce5a49f
4 changed files with 0 additions and 96 deletions
-1
View File
@@ -81,7 +81,6 @@ export default function ChatPage() {
/>
</nav>
</div>
{/* <CurrentUser /> */}
</div>
<div className={`right ${placeholderVisible ? "placeholder" : ""}`}>
{placeholderVisible && <BlankPlaceholder />}
-2
View File
@@ -5,7 +5,6 @@ import { useParams } from "react-router-dom";
import StyledWrapper from "./styled";
import BlankPlaceholder from "../../common/component/BlankPlaceholder";
import Server from "../../common/component/Server";
import CurrentUser from "../../common/component/CurrentUser";
import ChannelChat from "./ChannelChat";
import DMChat from "./DMChat";
import UsersModal from "../../common/component/UsersModal";
@@ -48,7 +47,6 @@ export default function ChatPage() {
<div className="left">
<Server />
<SessionList tempSession={tmpSession} />
<CurrentUser />
</div>
<div className={`right ${placeholderVisible ? "placeholder" : ""}`}>
{placeholderVisible && <BlankPlaceholder />}