Skip to content

Commit

Permalink
Merge pull request #83 from softeerbootcamp4th/fix-build-error
Browse files Browse the repository at this point in the history
[Fix] build error
  • Loading branch information
nim-od authored Aug 19, 2024
2 parents 20929cc + 2445696 commit 54e7390
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions packages/admin/src/components/chat/RealTimeChatting.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@ import Chat from './Chat.tsx';

/** 실시간 기대평 섹션 */

function RealTimeChatting({
chatSocket: { onSendMessage, messages },
}: Pick<UseSocketReturnType, 'chatSocket'>) {
function RealTimeChatting({ chatSocket: { messages } }: Pick<UseSocketReturnType, 'chatSocket'>) {
return (
<section className="container flex max-w-[1200px] snap-start flex-col items-center pb-[115px] pt-[50px]">
<h6 className="text-heading-10 mb-[25px] font-medium">기대평을 남겨보세요!</h6>
Expand Down
4 changes: 2 additions & 2 deletions packages/user/src/pages/NotStartedEventPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ export default function NotStartedEventPage() {
>
<div className="flex min-w-max flex-col items-center gap-5">
<h3>이벤트가 시작하기까지</h3>
<EventTimer endTime="h" />
<p className="text-detail-1 min-w-max font-medium text-neutral-300">a</p>
<EventTimer endTime={startTime} />
<p className="text-detail-1 min-w-max font-medium text-neutral-300">{formattedDuration}</p>
</div>
<img src="/images/fcfs/modal.png" alt="오류 발생 이미지" className="w-full max-w-[1000px]" />
</div>
Expand Down

0 comments on commit 54e7390

Please sign in to comment.