Skip to content

Commit

Permalink
style: remove unused fields
Browse files Browse the repository at this point in the history
  • Loading branch information
pmh-only committed Aug 20, 2023
1 parent 39b72d5 commit b4ebda4
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/components/TopNav/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,12 @@ const TopNav: FC = () => {
src="/assets/icon/search.svg"
alt="Search" className={style.searchIcon} />

<input type="text" autoComplete="off" spellCheck="false" aria-haspopup="dialog" id="search" placeholder="검색" role="combobox" onChange={(e) => { setSearch(e.target.value) }} />
<input
type="text"
autoComplete="off"
spellCheck="false"
placeholder="인스턴스 검색"
onChange={(e) => { setSearch(e.target.value) }} />
</label>
</form>
)}
Expand Down

0 comments on commit b4ebda4

Please sign in to comment.