function sendGa(event, type, category, action, label = null, value = null) {
window.ga(() => {
const trackers = window.ga.getAll();
const firstTracker = trackers[0];
const trackerName = firstTracker.get('name');
window.ga(trackerName + '.' + event, type, category, action, label, value);
});
}