You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi there. It's probably just me but after I updated packages with yarn, I tried deploying it and got this issue below. Do you have any idea how can I solve this issue?
7:35:53 PM: ./components/NextImage.tsx:13:32
7:35:53 PM: Type error: Property 'imageDimensions' does not exist on type 'Node'.
7:35:53 PM: 11 | const { node } = props
7:35:53 PM: 12 | if (!node) return null
7:35:53 PM: > 13 | const imageDimensions = node.imageDimensions as Dimensions
7:35:53 PM: | ^
7:35:53 PM: 14 | const { src, className: classArray } = node.properties as PropertyProps
7:35:53 PM: 15 | const className = classArray?.join(' ')
7:35:53 PM: 16 |