diff --git a/src/components/organisms/BrowserWindow.tsx b/src/components/organisms/BrowserWindow.tsx index ff188656..0a509408 100644 --- a/src/components/organisms/BrowserWindow.tsx +++ b/src/components/organisms/BrowserWindow.tsx @@ -316,7 +316,7 @@ export const BrowserWindow = () => { return ( -
+
{ getText === true || getList === true ? ( { ) : null } -
{/* Make this section scrollable */} +
{((getText === true || getList === true) && !showAttributeModal && highlighterData?.rect != null && highlighterData?.rect.top != null) && canvasRef?.current ? : null}
@@ -385,7 +385,7 @@ const drawImage = (image: string, canvas: HTMLCanvasElement): void => { img.src = image; img.onload = () => { URL.revokeObjectURL(img.src); - ctx?.drawImage(img, 0, 0, 900, 500); + ctx?.drawImage(img, 0, 0, 1150, 400); }; }; \ No newline at end of file