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 f7fc500 commit b0f87d5Copy full SHA for b0f87d5
packages/test-ui/src/routes/__root.tsx
@@ -137,7 +137,7 @@ function RootLayout() {
137
placeholder="New stream path"
138
value={newStreamPath}
139
onChange={(e) => setNewStreamPath(e.target.value)}
140
- onInput={(e) => e.key === `Enter` && void createStream()}
+ onKeyDown={(e) => e.key === `Enter` && void createStream()}
141
/>
142
<select
143
value={newStreamContentType}
0 commit comments