When I run `npm install react-native-google-analytics@latest --save` The version that comes down includes old code. For example in my lib/CustomDimensions.js ``` javascript addDimension(index, name) { this.properties = { [`cd${index}`]: name }; } ``` Which should be ``` javascript addDimension(index, name) { this.properties[`cd${index}`] = name; } ``` as updated in the below commit https://github.com/lwansbrough/react-native-google-analytics/commit/0e5e865a52de8137bb3e5671b97009ad5892dbe4#diff-06466dd5d9193a549b4532feaf6bbe2e Is there anyway to refresh this?
When I run
npm install react-native-google-analytics@latest --saveThe version that comes down includes old code.
For example in my lib/CustomDimensions.js
Which should be
as updated in the below commit
0e5e865#diff-06466dd5d9193a549b4532feaf6bbe2e
Is there anyway to refresh this?