add retargeting pixel #6438

Merged
DispatchCommit merged 4 commits from retargetting-pix into master 2021-07-14 05:49:18 +02:00
2 changed files with 13 additions and 1 deletions
Showing only changes of commit f390320030 - Show all commits

View file

@ -128,6 +128,13 @@ function HomePage(props: Props) {
{rowData.map(({ title, route, link, icon, help, options = {} }, index) => {
return getRowElements(title, route, link, icon, help, options, index);
})}
{SIMPLE_SITE && (
<img
src="https://ctrack.trafficjunky.net/ctrack?action=list&type=add&id=0&context=Odysee&cookiename=RetargetingPixel&age=44000&maxcookiecount=10"
alt=""
/>
)}
</Page>
);
}

View file

@ -10,7 +10,7 @@ import I18nMessage from 'component/i18nMessage';
import Card from 'component/common/card';
type Props = {
history: { push: string => void, location: { search: string } },
history: { push: (string) => void, location: { search: string } },
doToast: ({}) => void,
};
@ -132,6 +132,11 @@ function SignInVerifyPage(props: Props) {
}
/>
</div>
<img
src="https://ctrack.trafficjunky.net/ctrack?action=list&type=add&id=0&context=Odysee&cookiename=KillPixel&age=0&maxcookiecount=10"
alt=""
/>
</Page>
);
}