Skip to content

Commit

Permalink
ooops
Browse files Browse the repository at this point in the history
  • Loading branch information
FredericHeem committed Dec 19, 2024
1 parent 91d5fbd commit 6deb5e5
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ export default (context: Context) => {
name: "check",
required: true,
value: inputState,
oninput: ({ target }) => (inputState.val = target.value),
oninput: ({ target }: { target: HTMLInputElement }) =>
(inputState.val = target.value),
})
)
),
Expand Down

0 comments on commit 6deb5e5

Please sign in to comment.