Merge branch 'main' into patch-3
This commit is contained in:
commit
8d394a3541
69 changed files with 2060 additions and 125 deletions
|
@ -133,8 +133,8 @@ function IsValidIcon({valid}: {valid: boolean}) {
|
|||
const t = useTheme()
|
||||
|
||||
if (!valid) {
|
||||
return <Check size="md" style={{color: t.palette.negative_500}} />
|
||||
return <Times size="md" style={{color: t.palette.negative_500}} />
|
||||
}
|
||||
|
||||
return <Times size="md" style={{color: t.palette.positive_700}} />
|
||||
return <Check size="md" style={{color: t.palette.positive_700}} />
|
||||
}
|
||||
|
|
|
@ -107,7 +107,7 @@ export const LoginForm = ({
|
|||
const errMsg = e.toString()
|
||||
setIsProcessing(false)
|
||||
if (errMsg.includes('Authentication Required')) {
|
||||
logger.info('Failed to login due to invalid credentials', {
|
||||
logger.debug('Failed to login due to invalid credentials', {
|
||||
error: errMsg,
|
||||
})
|
||||
setError(_(msg`Invalid username or password`))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue