mirror of
https://github.com/logto-io/logto.git
synced 2025-01-06 20:40:08 -05:00
fix(console): hide the add connectors hint when no connectors found on sign-in-experience page (#1473)
This commit is contained in:
parent
130817f101
commit
d3094005f1
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ const ConnectorsTransfer = ({ value, onChange }: Props) => {
|
|||
|
||||
return (
|
||||
<>
|
||||
{value.length === 0 && (
|
||||
{datasource.length > 0 && value.length === 0 && (
|
||||
<Alert>{t('sign_in_exp.setup_warning.no_added_social_connector')}</Alert>
|
||||
)}
|
||||
<Transfer
|
||||
|
|
Loading…
Reference in a new issue