Skip to content

Commit

Permalink
[Fix] 프론트 배포 전 오휴 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
김병현 authored and 김병현 committed Sep 12, 2023
1 parent 01b5660 commit 981e767
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions client/src/components/MarketComponents/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ const NewsListLink = {

const Market = styled.div`
text-align: center;
height: 600px;
`;
const News = styled.div`
display: flex;
Expand Down
1 change: 1 addition & 0 deletions client/src/components/communityComponents/Comments.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ const Comments = ({ postId }: { postId: number }) => {
setVisibleComments(close ? 1 : commentData.length);
};

//코드 중복
// const CommentText = {
// write: "작성",
// replyCount: `댓글${commentData.length}개 모두보기`,
Expand Down
1 change: 1 addition & 0 deletions client/src/components/communityComponents/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -312,6 +312,7 @@ const TimeLine = styled.div`
flex-direction: column;
align-content: space-around;
flex-wrap: wrap;
max-height:600px;
`;
//게시글 삭제
const Delete = styled.div`
Expand Down
2 changes: 1 addition & 1 deletion client/src/page/MainPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ const MainPage = () => {
}}
/>
)}
{isProfileModalOpen && <ProfileModal onClose={() => setProfileModalOpen(false)} />} //프로필 모달 컴포넌트 렌더링
{isProfileModalOpen && <ProfileModal onClose={() => setProfileModalOpen(false)} />}

</Container>
);
Expand Down

0 comments on commit 981e767

Please sign in to comment.