diff --git a/src/app/main-api-handler.ts b/src/app/main-api-handler.ts index a4e14db08..17ab4ac5f 100644 --- a/src/app/main-api-handler.ts +++ b/src/app/main-api-handler.ts @@ -710,5 +710,10 @@ const loadPodUrl = (proxyLogin = false) => { ); proxyDetails.retries += 1; } + logger.error( + 'main-api-handler: browser login error. Details: ', + error.type, + error.code, + ); }); }; diff --git a/src/renderer/components/welcome.tsx b/src/renderer/components/welcome.tsx index 7fd842259..9bc63a762 100644 --- a/src/renderer/components/welcome.tsx +++ b/src/renderer/components/welcome.tsx @@ -56,9 +56,6 @@ export default class Welcome extends React.Component<{}, IState> { {i18n.t('Welcome back!', WELCOME_NAMESPACE)()} - - {i18n.t('Please login to continue', WELCOME_NAMESPACE)()} - )} {!isPodConfigured && ( @@ -276,7 +273,7 @@ export default class Welcome extends React.Component<{}, IState> { className={loginButtonClasses} disabled={(!isPodConfigured && !urlValid) || isLoading} onClick={this.eventHandlers.onLogin} - style={isPodConfigured ? { marginTop: '40px' } : {}} + style={isPodConfigured ? { marginTop: '24px' } : {}} > {isLoading && (