From a8c19818edae358c3834f96e247c862b47031fdb Mon Sep 17 00:00:00 2001 From: Sean Yesmunt Date: Fri, 11 Sep 2020 12:40:41 -0400 Subject: [PATCH] add back sign in link on desktop --- ui/component/header/view.jsx | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/ui/component/header/view.jsx b/ui/component/header/view.jsx index 82938a3cc..6e212c4f9 100644 --- a/ui/component/header/view.jsx +++ b/ui/component/header/view.jsx @@ -317,10 +317,16 @@ const Header = (props: Props) => { {email} ) : !IS_WEB ? ( - history.push(`/$/${PAGES.AUTH}`)}> - - {__('Sign In')} - + <> + history.push(`/$/${PAGES.AUTH}`)}> + + {__('Sign Up')} + + history.push(`/$/${PAGES.AUTH_SIGNIN}`)}> + + {__('Sign In')} + + ) : null}