2
0

🐛 (googleAnalytics) Fix sendTo initial value in settings

This commit is contained in:
Baptiste Arnaud
2023-05-02 13:46:49 -04:00
parent e58016e43a
commit e2836f305c
4 changed files with 12 additions and 10 deletions

View File

@ -39,7 +39,7 @@ export const sendGaEvent = (options: GoogleAnalyticsOptions) => {
gtag('event', options.action, {
event_category: options.category,
event_label: options.label,
value: options.value,
value: options.value as number,
send_to: options.sendTo,
})
}