Removed unused react-jss dependency #587
Merged
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.
Description
Apparently this was leftover from MUI v4.
Test plan
Make sure things still build/work.
Summary by CodeRabbit
✏️ Tip: You can customize this high-level summary in your review settings.
Greptile Overview
Greptile Summary
This PR removes the unused
react-jssdependency from the project. The dependency was a legacy from MUI v4, which used JSS (JavaScript Style Sheets) for styling. The project has since migrated to MUI v7 (currently at v7.3.4), which uses Emotion for styling (@emotion/reactand@emotion/styled).Key findings:
react-jssreact-jssConfidence Score: 5/5
react-jssis completely safe as it's genuinely unused. Verified that no code imports it, no packages depend on it, and the project uses MUI v7 with Emotion for all styling needsImportant Files Changed
File Analysis
Sequence Diagram
sequenceDiagram participant Dev as Developer participant Package as package.json participant Dependencies as Dependency Tree Dev->>Package: Remove react-jss dependency Note over Package: Line 107: "react-jss": "10.10.0" removed Package->>Dependencies: No longer includes react-jss Note over Dependencies: MUI v7 uses @emotion/react<br/>No impact on existing code