Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/web/src/components/chat/chat-list-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ const ChatListCard = ({ chatInfo }: { chatInfo: ChatRoom }) => {
</p>
</div>
</Link>
<ButtonChatMore />
{/* <ButtonChatMore /> */}
</div>
);
};
Expand Down
14 changes: 8 additions & 6 deletions apps/web/src/components/layout/header/chat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ const ChatHeaderContent = () => {
{pathname.includes('chat') && !id ? (
<>
<h2 className="text-h4 font-bold">채팅</h2>
<Bell />
{/* <Bell /> */}
</>
) : (
<>
<BackButton />
<h2 className="text-h4 font-bold">{interlocutor}</h2>
<ButtonMore items={item} />
<h2 className="text-h4 absolute left-1/2 translate-x-[-50%] font-bold">{interlocutor}</h2>
{/* <ButtonMore items={item} /> */}
</>
)}
</HeaderWrapper>
Expand All @@ -46,10 +46,12 @@ const ChatHeader = () => {
<Suspense
fallback={
<HeaderWrapper className="bg-white">
<div className="flex w-full items-center justify-between">
<div className="relative flex w-full items-center justify-between">
<BackButton />
<h2 className="text-h4 font-bold">상대방 닉네임</h2>
<ButtonMore items={item} />
<h2 className="text-h4 absolute left-1/2 translate-x-[-50%] font-bold">
상대방 닉네임
</h2>
{/* <ButtonMore items={item} /> */}
</div>
</HeaderWrapper>
}
Expand Down
3 changes: 0 additions & 3 deletions apps/web/src/components/layout/header/main.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
import { BellRing } from 'lucide-react';

import { HeaderWrapper, HomeFilterSelect } from '@/components/layout';

const MainHeader = () => {
return (
<HeaderWrapper className="bg-white">
<HomeFilterSelect />
<BellRing />
</HeaderWrapper>
);
};
Expand Down
Loading