Lets keep it simple:
<Image
src={
evidence.thumbnail
? `https://blablabla.de/evidence/${evidence.thumbnail}`
: ""
}
width={160}
height={80}
style={{borderRadius: "10px"}}
alt={"Thumbnail"}
/>
The image request goes trough my backend -> This is the url i receive. Everything is correct.
Now what happens is that one of my functions loads another but same image component with the same exact image ->
<Image
src={`https://blablabla.de/evidence/${currentEvidence?.thumbnail}`}
width={730}
height={0}
quality="100"
style={{
height: "700px",
width: "100%",
borderRadius: "10px",
boxShadow: "0px 0px 100px 82px rgba(255, 255, 255, 0.09)",
}}
alt="Thumbnail"
/>
for some reason tho the path is now null ```tsx
/null
Does it have something to do with next/image or my thirdparty dedicated