Skip to content

Commit

Permalink
fix: readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Splicer97 committed Mar 6, 2024
1 parent 4444aa1 commit 186c5de
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ MyTracker.trackLevelWithLevelWithParams(1, {
param2: 'name2',
});

const instanceDd = await MyTracker.getInstanceId();
const instanceId = await MyTracker.getInstanceId();
```

## Contributing
Expand Down
4 changes: 2 additions & 2 deletions example/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import { StyleSheet, Text, View } from 'react-native';
export default function App() {
MyTracker.initTracker('initTracker');
const getId = async () => {
const instanceDd = await MyTracker.getInstanceId();
console.log('🚀 ~ getId ~ instanceDd:', instanceDd);
const instanceId = await MyTracker.getInstanceId();
console.log('🚀 ~ getId ~ instanceId:', instanceId);
};
useEffect(() => {
getId();
Expand Down

0 comments on commit 186c5de

Please sign in to comment.