1
0
mirror of https://github.com/uetchy/namae.git synced 2026-06-01 11:09:47 +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
+2 -2
View File
@@ -213,13 +213,13 @@ const Suggestion: React.FC<{
} }
function applyQuery(name: string): void { function applyQuery(name: string): void {
sendAcceptSuggestionEvent();
onSubmit(name); onSubmit(name);
sendAcceptSuggestionEvent();
} }
function onShuffleButtonClicked() { function onShuffleButtonClicked() {
sendShuffleSuggestionEvent();
shuffle(); shuffle();
sendShuffleSuggestionEvent();
} }
useEffect(() => { useEffect(() => {
+3 -1
View File
@@ -19,7 +19,9 @@ export function trackEvent({
type?: string; type?: string;
}) { }) {
if (isProduction) { if (isProduction) {
umami.trackEvent(value, type); try {
umami && umami.trackEvent(value, type);
} catch (err) {}
} }
} }
+1025 -964
View File
File diff suppressed because it is too large Load Diff