Considering below hooks example
import { useState } from \'react\'; function Example() { const [count, setCount] = useState(0); return
Potential option is to force update only on specific component using key. Updating the key trigger a rendering of the component (which failed to update before)
key
For example:
const [tableKey, setTableKey] = useState(1); ... useEffect(() => { ... setTableKey(tableKey + 1); }, [tableData]); ...