diff --git a/src/components/Shared/Tracking/index.js b/src/components/Shared/Tracking/index.js index b0d77726..8ca524ec 100644 --- a/src/components/Shared/Tracking/index.js +++ b/src/components/Shared/Tracking/index.js @@ -11,9 +11,9 @@ const initGA = (trackingID, options) => { const Event = (category, action, label) => { ReactGA.event({ - category: category, - action: action, - label: label, + category, + action, + label, }); };