mirror of
https://github.com/BradNut/weddingsite
synced 2025-09-08 17:40:36 +00:00
7 lines
186 B
JavaScript
7 lines
186 B
JavaScript
async function handleUmamiEvent(eventValue, eventType) {
|
|
if (typeof window !== 'undefined') {
|
|
window?.umami?.trackEvent(eventValue, eventType);
|
|
}
|
|
}
|
|
|
|
export { handleUmamiEvent };
|