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) {
}
/>
+
+
);
}