Skip to content

Commit

Permalink
Merge pull request #90 from AJD-Archive/refactor/87
Browse files Browse the repository at this point in the history
전체 QA
  • Loading branch information
MyungJiwoo authored Sep 25, 2024
2 parents 6518c92 + cef2457 commit 460c9bc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pages/CreateTeamBoardPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ const CreateTeamBoard = () => {
<Flex flexDirection="column" alignItems="center">
<RowWrapper>
{/* ! 팀원일 때 스타일 오류나면 고쳐야 할 곳 */}
<LastLabel isNotCreator={isCreator?.myId !== isCreator.creatorId}>팀원</LastLabel>
<LastLabel isNotCreator={isCreator?.myId === isCreator.creatorId}>팀원</LastLabel>
{/* 팀원일 때 보여질 팀원 리스트 */}
<Flex flexDirection="column">
{isCreator?.myId !== isCreator.creatorId && (
Expand Down
4 changes: 3 additions & 1 deletion src/pages/TeamDocumentBoard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,9 @@ const TeamDocumentBoard = () => {
</S.Header>

<S.CategoriesContainer>
{/* <S.Category>전체</S.Category> */}
<S.Category onClick={() => handleCategoryClick('')} isSelected={selectedCategory === ''}>
전체
</S.Category>
{categories.map((category, index) => (
<S.Category
key={index}
Expand Down

0 comments on commit 460c9bc

Please sign in to comment.