Open
Description
Description
Non descriptive error causes ui not to render using some components. Downgrading to react 18 solved this issue. I'm not sure which components are affected but at least ActionList.Item
and CheckBoxGroup.Label
are affected. This error is consistent across chrome, safari and Firefox.
Steps to reproduce
- initialize project, I used vite.
npm create vite@latest
- install primer
npm install @primer/react
- replace app.tsx with the following
import './App.css'
import { ActionList } from '@primer/react'
function App() {
return (
<ActionList>
<ActionList.Item><span>Item 1</span></ActionList.Item>
</ActionList>
)
}
export default App
- try to run
npm run dev
Version
v37.17.0
Browser
Safari