From f390320030487afb6450b0bd38e5080b301587da Mon Sep 17 00:00:00 2001 From: DispatchCommit Date: Thu, 8 Jul 2021 01:26:58 -0700 Subject: [PATCH] add retargeting pixel --- ui/page/home/view.jsx | 7 +++++++ ui/page/signInVerify/view.jsx | 7 ++++++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/ui/page/home/view.jsx b/ui/page/home/view.jsx index 1941091a3..78754d67b 100644 --- a/ui/page/home/view.jsx +++ b/ui/page/home/view.jsx @@ -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 && ( + + )} ); } diff --git a/ui/page/signInVerify/view.jsx b/ui/page/signInVerify/view.jsx index 8abb8495b..acdf97a74 100644 --- a/ui/page/signInVerify/view.jsx +++ b/ui/page/signInVerify/view.jsx @@ -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) { } /> + + ); }