Skip to content

Commit

Permalink
Fix element type annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
twm committed Nov 4, 2024
1 parent 9fb65bd commit 7156ef8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/FracInput.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
}: Props = $props()
let focused: boolean = $state(false)
let input: HTMLInputElement = $state()
let input: HTMLInputElement | undefined = $state()
let rawValue = $state(frac(value))
let displayValue = $state(frac(value))
Expand Down

0 comments on commit 7156ef8

Please sign in to comment.