diff --git a/src/components/promos/November2023NoShopUser.js b/src/components/promos/November2023NoShopUser.js index c6e70339..50f1f888 100644 --- a/src/components/promos/November2023NoShopUser.js +++ b/src/components/promos/November2023NoShopUser.js @@ -8,6 +8,7 @@ import Typography from '@material-ui/core/Typography' import IconButton from '@material-ui/core/IconButton' import CloseIcon from '@material-ui/icons/Close' import localStorageMgr from 'src/utils/localstorage-mgr' +import { windowOpenTop } from 'src/utils/navigation' import { NOTIF_DISMISS_PREFIX } from 'src/utils/constants' const contStyles = { @@ -34,6 +35,13 @@ const November2023NoShopUser = ({ user }) => { return false } + const buttonClick = () => { + // gtag('event', 'group_impact_sidebar', { + // interaction: 'click_shop_upsell', + // }) + windowOpenTop('http://shop.gladly.io') + } + useEffect(() => { const dissNotif = localStorageMgr.getItem(getNotifDismissKey('november-2023-no-shop')) || @@ -103,6 +111,7 @@ const November2023NoShopUser = ({ user }) => {