From f929c47b185de2af754e42c7df363bf0568e0cd0 Mon Sep 17 00:00:00 2001 From: Sean Prashad <13009507+SeanPrashad@users.noreply.github.com> Date: Mon, 23 Dec 2024 19:15:47 -0500 Subject: [PATCH] Correct lint issues for Eslint --- src/components/Shared/Tracking/index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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, }); };