๐ Bug HuntRX React Easyโก+10 XP
State Mutation
The UI doesn't update when the array changes.
๐ Find the bug
1
const [items, setItems] = useState([]);2
const addItem = (item) => { items.push(item); };๐ The bug is on line 2