feat: use gtag instead gtm (#1695)

This commit is contained in:
Joel
2023-12-05 15:05:05 +08:00
committed by GitHub
parent b5dd948e56
commit 2e588ae221
12 changed files with 64 additions and 34 deletions

View File

@@ -8,7 +8,9 @@ import AppsInfo from '../usage-info/apps-info'
import s from './style.module.css'
import GridMask from '@/app/components/base/grid-mask'
const AppsFull: FC = () => {
const AppsFull: FC<{ loc: string }> = ({
loc,
}) => {
const { t } = useTranslation()
return (
@@ -20,7 +22,7 @@ const AppsFull: FC = () => {
<div>{t('billing.apps.fullTipLine2')}</div>
</div>
<div className='flex'>
<UpgradeBtn />
<UpgradeBtn loc={loc} />
</div>
</div>
<AppsInfo className='mt-4' />