I was able to fix this issue by adding a '^' for my react-native version in package.json.
package.json
Previous (package.json): "react-native": "0.75.1"
"react-native": "0.75.1"
Correct (package.json): "react-native": "^0.75.1"
"react-native": "^0.75.1"