Skip to content

Commit

Permalink
Removed console log in Login component
Browse files Browse the repository at this point in the history
  • Loading branch information
souyahia-monk committed Nov 14, 2024
1 parent 79cad6f commit d0fa78b
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion packages/common-ui-web/src/components/Login/Login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,6 @@ export const Login = i18nWrap(function Login({ onLoginSuccessful, lang, style =
<div style={{ ...rootStyles, ...styles['container'], ...style }}>
{isExpired && <div style={styles['errorMessage']}>{t('errors.token-expired')}</div>}
{loading.error && <div style={styles['errorMessage']}>{t(loading.error)}</div>}
{authToken && config?.allowManualLogin && 'hi'}
{authToken && config?.allowManualLogin && (
<Button primaryColor='alert' loading={loading} onClick={logout}>
{t('actions.log-out')}
Expand Down

0 comments on commit d0fa78b

Please sign in to comment.