|
const objectBuilder = (products) => { |
This helper function looks like it could be moved into utils file or folder. In general this component is getting a bit unwieldy. See if you can extract some.
Also, I'm not sure but you may consider useRefs if you really need to DOM properties directly (for ex, line 83 in onCompareProductClick). Docs: https://reactjs.org/docs/refs-and-the-dom.html
Project_Catwalk/client/src/components/Related/Related.jsx
Line 17 in 844804d
This helper function looks like it could be moved into utils file or folder. In general this component is getting a bit unwieldy. See if you can extract some.
Also, I'm not sure but you may consider useRefs if you really need to DOM properties directly (for ex, line 83 in onCompareProductClick). Docs: https://reactjs.org/docs/refs-and-the-dom.html