Skip to content

Commit

Permalink
chore(picture input): add types
Browse files Browse the repository at this point in the history
Co-authored-by: Rita Lopes <[email protected]>
  • Loading branch information
tomas-sucena and MRita443 authored Dec 4, 2024
1 parent ddd6197 commit d8fb00a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/lib/components/forms/picture-input.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
import Icons from '$lib/components/icons/icons';
export let text: string;
let avatar, fileinput;
let avatar: string;
let fileinput: HTMLInputElement;
const onFileSelected = (e) => {
let image = e.target.files[0];
Expand Down

0 comments on commit d8fb00a

Please sign in to comment.