Skip to content

Commit

Permalink
#87 feat: 팀 문서에 카테고리 전체 검색 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
MyungJiwoo committed Sep 25, 2024
1 parent 598eda5 commit cef2457
Showing 1 changed file with 3 additions and 1 deletion.
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 cef2457

Please sign in to comment.