diff --git a/packages/web-react/src/components/FileUploader/AttachmentImagePreview.tsx b/packages/web-react/src/components/FileUploader/AttachmentImagePreview.tsx index a47dc00c3d..919150aa41 100644 --- a/packages/web-react/src/components/FileUploader/AttachmentImagePreview.tsx +++ b/packages/web-react/src/components/FileUploader/AttachmentImagePreview.tsx @@ -1,11 +1,11 @@ import React from 'react'; import { FileMetadata } from '../../types/fileUploader'; -import { useFileUploaderStyleProps } from './useFileUploaderStyleProps'; import { IMAGE_DIMENSION } from './constants'; +import { useFileUploaderStyleProps } from './useFileUploaderStyleProps'; type AttachmentImagePreviewProps = { - label: string; imagePreview: string; + label: string; meta?: FileMetadata; };