1
0
mirror of https://github.com/uetchy/namae.git synced 2025-08-20 18:08:11 +09:00

fix: catch event error

This commit is contained in:
2021-10-07 23:54:21 +09:00
parent ad58f4f567
commit 2790dfb7ac
3 changed files with 1030 additions and 967 deletions

View File

@@ -19,7 +19,9 @@ export function trackEvent({
type?: string;
}) {
if (isProduction) {
umami.trackEvent(value, type);
try {
umami && umami.trackEvent(value, type);
} catch (err) {}
}
}