Skip to content

Commit

Permalink
fix: 검색 결과 출연진 오류 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
gogumalatte committed Nov 21, 2024
1 parent 4269555 commit f00677c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Main/components/SearchContents.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,15 +92,15 @@ function SearchContents(): JSX.Element {
>
<option value="title">제목</option>
<option value="genre">장르</option>
<option value="director">감독</option>
<option value="cast">출연진</option>
</Select>

<InputGroup maxWidth="600px" flex="1">
<Input
placeholder="검색어를 입력하세요"
value={searchQuery}
onChange={(e) => setSearchQuery(e.target.value)}
onKeyPress={handleKeyPress}
onKeyDown={handleKeyPress}
/>
<InputRightElement>
<IconButton
Expand Down

0 comments on commit f00677c

Please sign in to comment.