If I give true to showUploadList in AntdDesign, the size of the file is not taken

Viewed 38

If I give true to showUploadList in AntdDesign, the size of the file is not taken emphasized text

const CertUploader = ({ value = {}, onChange }) => {
  return (

    <div className="step-1-image-upload">
      <Uploader
        showUploadList={true}
        title={"Upload Certificate"}
        value={value}
        beforeUpload={(file) => false}
        onChange={(info) => onChange(info)}
   
    />

    </div>
  );
};

0 Answers
Related