Skip to content

Commit

Permalink
fix(FileUploaderDropContainer): resolve click handler errorerror (#17568
Browse files Browse the repository at this point in the history
)

Co-authored-by: Alison Joseph <[email protected]>
  • Loading branch information
emyarod and alisonjoseph authored Oct 9, 2024
1 parent 9a231fa commit 80f0069
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ function FileUploaderDropContainer({
multiple={multiple}
onChange={handleChange}
onClick={(evt) => {
(evt.target as HTMLInputElement).value = null as unknown as string;
(evt.target as HTMLInputElement).value = '';
}}
/>
</div>
Expand Down

0 comments on commit 80f0069

Please sign in to comment.