@luscii-healthtech/web-ui 9.2.1 → 9.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4729,6 +4729,10 @@ const ImagePickerInner = ({
4729
4729
  setSelectedMediaType("image");
4730
4730
  setHighlightedImage(null);
4731
4731
  setError(null);
4732
+ const fileInput = fileInputRef.current;
4733
+ if (fileInput) {
4734
+ fileInput.value = "";
4735
+ }
4732
4736
  };
4733
4737
  function handleConfirmSelection() {
4734
4738
  setSelectedMedia(highlightedImage !== null && highlightedImage !== void 0 ? highlightedImage : placeholderImage);