Skip to content

Commit 2bc7613

Browse files
authored
Merge branch 'master' into fix-effect-ordering
2 parents f2890f4 + 2af05f5 commit 2bc7613

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

.codesandbox/ci.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ const App = () => {
8989
return (
9090
<div>
9191
<p>Do you agree to the statement: "Preact is awesome"?</p>
92-
<input value={input} onChange={e => setInput(e.target.value)} />
92+
<input value={input} onInput={e => setInput(e.target.value)} />
9393
</div>
9494
)
9595
}

0 commit comments

Comments
 (0)