diff --git a/client/src/components/attachments/Attachments/Item.jsx b/client/src/components/attachments/Attachments/Item.jsx index 1efb4035..24c95bf5 100644 --- a/client/src/components/attachments/Attachments/Item.jsx +++ b/client/src/components/attachments/Attachments/Item.jsx @@ -16,6 +16,7 @@ import Encodings from '../../../constants/Encodings'; import { AttachmentTypes } from '../../../constants/Enums'; import ItemContent from './ItemContent'; import ContentViewer from './ContentViewer'; +import PdfViewer from './PdfViewer'; import CsvViewer from './CsvViewer'; import styles from './Item.module.scss'; @@ -40,10 +41,8 @@ const Item = React.memo(({ id, isVisible }) => { switch (attachment.data.mimeType) { case 'application/pdf': content = ( - // eslint-disable-next-line jsx-a11y/alt-text - ); @@ -60,15 +59,6 @@ const Item = React.memo(({ id, isVisible }) => {