{{ message }}
fix: ensure mdx pages can be displayed by storybook#814
Merged
Conversation
Rollback react to 19.0 in website. This introduced global side effects on stories. Also change the version of other dependencies that previously depended on react 19.1. For example, this includes algolia and docsearch packages Configure dependabot to prevent from bumping react in the future and reintroducing the past issue.
There was a problem hiding this comment.
Actionable comments posted: 0
🧹 Nitpick comments (1)
packages/website/package.json (1)
22-23: Semver range still allows unintended React updates
The caret range^19.0.0will accept all React v19.x releases (including 19.1.x), which undermines the rollback intent. If you need to strictly pin to v19.0.x, consider using a tilde range (~19.0.0) or an exact version ("react": "19.0.0").
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
⛔ Files ignored due to path filters (1)
package-lock.jsonis excluded by!**/package-lock.json
📒 Files selected for processing (2)
.github/dependabot.yml(1 hunks)packages/website/package.json(1 hunks)
🔇 Additional comments (1)
.github/dependabot.yml (1)
27-30: Lock React updates via Dependabot ignore
These ignore rules forreactandreact-domcorrectly prevent Dependabot from upgrading beyond v19.x, preserving Storybook 7.x compatibility.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.




Rollback react to 19.0 in website. This introduced global side effects on stories.
Also change the version of other dependencies that previously depended on react 19.1.
For example, this includes algolia and docsearch packages
Configure dependabot to prevent from bumping react in the future and reintroducing the past issue.
Notes
Closes #747
Summary by CodeRabbit