You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix React 18.0.0 compatibility by using React namespace imports
Changed from named imports to React namespace for better compatibility with React 18.0.0:
- `Component` → `React.Component`
- `createContext` → `React.createContext`
- `useContext` → `React.useContext`
- `use` → `React.use`
This fixes the build (20) CI failure where React is downgraded to 18.0.0 for
minimum version testing. Named exports may not be available in older React versions.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <[email protected]>
0 commit comments