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
item?.__media?.url is undefined in Blog.tsx:173 header image when it should be url link to image. No idea why this doesnt work. Note: Blog.tsx:162 does not impact what image is shown
console.log(item?.__media?.url) returns Undefined
Same problem in Gallery.tsx:112 but with firstItem?.__media?.url for the rest of the images. Note: Gallery.tsx:139 does not impact what image is shown
Potenital solutions
Find and replace firstItem?.__media?.url with firstItem?.__media?.formats.medium.url and item?.__media?.url with item?.__media?.formats.medium.url which does contain link to correct image. Note: medium can be replaced with large and small, i just chose one at random
Fix so that firstItem?.__media?.url and item?.__media?.url returns link to image, maybe something for @landeholt or @OliverMidbrink ?
The text was updated successfully, but these errors were encountered: