error 처리

Invalid hook call

Developer Mobssie 2023. 4. 25. 16:49

Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:
1. You might have mismatching versions of React and the renderer (such as React DOM)
2. You might be breaking the Rules of Hooks
3. You might have more than one copy of React in the same app

 

 

useEffect(()=> {
  const checkedItems = checkboxRefs.reduce<TCart[]>((res, ref, i)=> {
    if(ref.current!.checked) res.push(items[i])
    return res
  }, [])
  setCheckedCartState(checkedItems)
}, [items, formData])

 

 

 

=> Hook의 규칙을 어기고 useEffect의 위치를 잘못 넣어서 나는 오타 에러.