@ctlyst.id/internal-ui 5.4.1 → 5.4.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.
package/dist/index.mjs CHANGED
@@ -6093,6 +6093,10 @@ var Uploader = ({
6093
6093
  if (typeof value === "string") {
6094
6094
  setFilePreview(value);
6095
6095
  } else {
6096
+ if (value.type === "image/heic") {
6097
+ setFilePreview(value.name);
6098
+ return;
6099
+ }
6096
6100
  setFilePreview(URL.createObjectURL(value));
6097
6101
  }
6098
6102
  } else {