-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(image): add missing w
to getWrapperProps
dependency
#3802
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
🦋 Changeset detectedLatest commit: 4042d44 The changes in this PR will be included in the next version bump. This PR includes changesets to release 2 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
WalkthroughA patch has been introduced for the Changes
Assessment against linked issues
Possibly related PRs
Suggested reviewers
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
Documentation and Community
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
Outside diff range and nitpick comments (1)
.changeset/shy-mails-live.md (1)
1-5
: LGTM! Changeset looks good.The changeset correctly identifies the package and sets an appropriate version bump for this bug fix. The description is concise and references the relevant issue.
Consider slightly expanding the change description for more clarity:
- add missing `w` to `getWrapperProps` dependency (#3801) + add missing `w` property to `getWrapperProps` dependency to fix image width updating (#3801)This provides a bit more context about the purpose of the change and its expected impact.
Review details
Configuration used: .coderabbit.yaml
Review profile: CHILL
Files selected for processing (2)
- .changeset/shy-mails-live.md (1 hunks)
- packages/components/image/src/use-image.ts (1 hunks)
Additional comments not posted (1)
packages/components/image/src/use-image.ts (1)
191-191
: Approved: Fix for image width not updatingThis change correctly addresses the issue described in #3801. By adding
w
to the dependency array ofgetWrapperProps
, the function will now re-compute when the width changes, ensuring that the wrapper'smaxWidth
is updated accordingly.This fix will resolve the bug where the image's maximum width was not being updated, improving the component's responsiveness to width changes.
Closes #3801
📝 Description
as titled
⛳️ Current behavior (updates)
pr3802-before.webm
🚀 New behavior
pr3802-after.webm
💣 Is this a breaking change (Yes/No):
📝 Additional Information
Summary by CodeRabbit
getWrapperProps
function to include a missing dependency, enhancing functionality and reliability.useEffect
dependency array in theuseImage
function to ensure proper reactivity to changes in thew
value, improving image rendering and layout adjustments.