Skip to content

Commit

Permalink
#80 refactor: 카테고리 입력시 자동 추천 끄기
Browse files Browse the repository at this point in the history
  • Loading branch information
MyungJiwoo committed Sep 24, 2024
1 parent 1d2e402 commit 298e871
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/pages/CreatePersonalBoardPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ const CreatePersonalBoard = () => {
list="categoryList"
value={formData.category}
onChange={handleChange}
autoComplete="off"
/>
<datalist id="categoryList">
{categoryList.map((category, index) => (
Expand Down
1 change: 1 addition & 0 deletions src/pages/TeamDocument.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ const TeamDocument = () => {
list="categoryList"
value={data.category}
onChange={handleInputChange}
autoComplete="off"
/>
<datalist id="categoryList">
{categories.map((category, index) => (
Expand Down

0 comments on commit 298e871

Please sign in to comment.