-
Notifications
You must be signed in to change notification settings - Fork 12
Open
Description
const ref = createRef()
const { image, takeScreenshot } = useScreenshot({ ref: ref })
return(
<div ref={ref as React.RefObject<HTMLDivElement>}>
{selectedItem && (
<>
<img
className={`
${css({
objectFit: 'cover',
objectPosition: 'center',
maxWidth: '100%',
})}
h-100
`}
src={getImage(selectedItem.images['3x']) || ''}
alt={'img'}
/>
<button onClick={() => takeScreenshot()}>TouchMe</button>
</>
)}
</div>
)
It is returning the error TypeError: Failed to execute 'getComputedStyle' on 'Window': parameter 1 is not of type 'Element'.
I think this error is because I am using nextJS.
Getting document.getElementById('root') is getting null, we should get document.getElementById('__next'), then, we can improve the library sending a new param with the id we want to get like as "root" in the useScreenShot() function or if it is returning null check with the first "root", try with "__next".
priyathamv and djoksimo
Metadata
Metadata
Assignees
Labels
No labels