Skip to content

Commit b0f87d5

Browse files
committed
fix
1 parent f7fc500 commit b0f87d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/test-ui/src/routes/__root.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ function RootLayout() {
137137
placeholder="New stream path"
138138
value={newStreamPath}
139139
onChange={(e) => setNewStreamPath(e.target.value)}
140-
onInput={(e) => e.key === `Enter` && void createStream()}
140+
onKeyDown={(e) => e.key === `Enter` && void createStream()}
141141
/>
142142
<select
143143
value={newStreamContentType}

0 commit comments

Comments
 (0)