Skip to content

Commit d84dbd8

Browse files
committed
Delay identifying amplitude version
1 parent 91f6fe8 commit d84dbd8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/common/src/utils/analytics.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,9 @@ export async function identify(key: string, value: string) {
6464
}
6565
}
6666

67-
identify('[Amplitude] Version', VERSION);
67+
setTimeout(() => {
68+
identify('[Amplitude] Version', VERSION);
69+
}, 5000);
6870

6971
export async function setUserId(userId: string) {
7072
try {

0 commit comments

Comments
 (0)