v26.4.247May 14, 2026
Artist profiles now display the background atmosphere correctly even when the hero image fails to load — instead of a blank screen, the page falls back to a subtle gradient.
Fixed
- Profile hero background no longer goes blank on image failure: When a hero image URL is invalid or the CDN returns an error,
ProfileCompactTemplatenow degrades gracefully to the gradient placeholder background instead of rendering blank. Root cause:ImageWithFallback's fallback container usedh-full w-full(normal flow) but<Image fill>generatesposition: absolute; inset: 0, so the fallback had zero height in the ambient background context. Fixed by usingabsolute inset-0for fill-layout fallbacks, and tracking image failure state inProfileCompactTemplateto render the gradient instead of a centred avatar icon.