Skip to content

Commit

Permalink
gfs
Browse files Browse the repository at this point in the history
  • Loading branch information
neerajrekwar committed Aug 7, 2024
1 parent 342817c commit 6f297b1
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions lib/gtag.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
export const GA_ID = process.env.NEXT_PUBLIC_GOOGLE_TAG_MANAGER_ID || ''
export const GA_ID = process.env.NEXT_PUBLIC_GOOGLE_ANALYTICS_ID || '';

export const existsGaId = GA_ID !== ''
export const GTM_ID = 'GTM-MV76385';

export const existsGaId = GA_ID !== ''
type ClickEvent = {
action: 'click'
category: 'sp_confirm_submit'
Expand Down Expand Up @@ -56,4 +57,6 @@ export const GoogleAnalytics = () => (
</>
)}
</>
)
)

export default GoogleAnalytics;

0 comments on commit 6f297b1

Please sign in to comment.