Unclaimed project
Are you a maintainer of heroui? Claim this project to take control of your public changelog and roadmap.
Changelog
🚀 Beautiful, fast and modern React UI library. (Previously NextUI)
Last updated about 2 months ago
Interactive roadmaps, guides and other educational content to help developers grow in their careers.
Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞
This is the repo for Vue 2. For Vue 3, go to https://github.com/vuejs/core
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
#6041 5ec842b Thanks @brianatdetections! - Fix race condition in use-image hook that caused cached images to remain invisible (stuck at opacity-0) on Firefox and Safari.
Root Cause:
Event handlers (onload/onerror) were attached AFTER setting the image src. For cached images, the browser fires onload synchronously when src is set, causing the event to be missed. This is particularly prevalent in Firefox and Safari due to their JavaScript execution timing characteristics.
Solution:
onload/onerror handlers BEFORE setting srcnaturalWidth AND naturalHeight (per CodeRabbit review feedback on #4523)ignoreFallback in useCallback dependencies to prevent stale closures when prop changes dynamicallyignoreFallback changesFixes #4534, #2259