Error regarding the component in the meshery UI directory

I was going through the codebase of meshery UI and this error popped up regarding the meshery performance component, what does it entail?

@Yash_Kamboj might have some insight here.

@rohannair11 I have faced this issue twice before

This can occur due to some package depending on a higher version of ReactJS

A simple fix is to go to the ui directory and do -

# Delete /node_modules
rm -rf node_modules 

# Install node_modules again
npm install

This will fix any dependency issues there could be with the npm packages installed.

1 Like