We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d17fef4 commit 966aab2Copy full SHA for 966aab2
src/components/HomePageComponents/Section1.tsx
@@ -112,6 +112,11 @@ const Section1: React.FC<Section1Props> = ({ scrollToNext }) => {
112
label="Search by keyword"
113
value={keyword}
114
onChange={(e) => setKeyword(e.target.value)}
115
+ onKeyDown={(e) => {
116
+ if (e.key === "Enter") {
117
+ handleSearch();
118
+ }
119
+ }}
120
sx={{
121
backgroundColor: Colors.white,
122
borderRadius: "8px",
0 commit comments