Hello I am a beginner in React-native and below is my flowconfig file's version and I get an error with this version

[version]
^0.92.0

Is there a way to fix this error, I was trying to run debug mode in visual code for running react-native projects and to print console.log. So far I am unsuccessful.

PS:- beginner in react-native

1. Check that the following tags match

package.json

<!-- language: lang-json --> <pre><code>"devDependencies": { "flow-bin": "<b>0.130.0</b>" }</code></pre>

.flowconfig

<!-- language: lang-toml --> <pre><code>[version] ^<b>0.130.0</b></code></pre>

2. Clean & Reinstall

If they match, this error can occur when your node_modules are out of sync with the version of flow-bin in your package.json. This can occur if you've changed branches recently or have have an older version in your node modules.

Try removing and reinstalling like this:

rm -rf node_modules/ && npm i