From 156bc59e1a779bb1f978a702bdf0cdf9a2aa64bd Mon Sep 17 00:00:00 2001 From: enes Date: Thu, 29 Aug 2024 17:02:32 +0200 Subject: [PATCH] chore(browser-warn): add alt attribute to image --- src/components/DrawPDFFields/index.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/DrawPDFFields/index.tsx b/src/components/DrawPDFFields/index.tsx index 66f6952..7ddf292 100644 --- a/src/components/DrawPDFFields/index.tsx +++ b/src/components/DrawPDFFields/index.tsx @@ -372,6 +372,7 @@ export const DrawPDFFields = (props: Props) => { }} draggable="false" src={page.image} + alt={`page ${pageIndex + 1} of ${file.name}`} /> {page.drawnFields.map((drawnField, drawnFieldIndex: number) => {