Skip to content

Commit

Permalink
Fix: add id prop to search box
Browse files Browse the repository at this point in the history
  • Loading branch information
engalisabry committed Dec 17, 2024
1 parent b304a03 commit 1de170f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/Home/SearchBox.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const SearchBox = () => {
}, [searchTerm]); // Depend on searchTerm to trigger effect

return (
<div className="search_box">
<div className="search_box" id="search-box">
<input
type="text"
value={searchTerm}
Expand Down

0 comments on commit 1de170f

Please sign in to comment.