mirror of
https://github.com/logto-io/logto.git
synced 2025-03-31 22:51:25 -05:00
fix(console): pass enabled connectors to preview (#1209)
This commit is contained in:
parent
2c413341d1
commit
ac74309414
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ const Preview = ({ signInExperience, className }: Props) => {
|
|||
>(
|
||||
(previous, connectorTarget) => [
|
||||
...previous,
|
||||
...allConnectors.filter(({ target }) => target === connectorTarget),
|
||||
...allConnectors.filter(({ target, enabled }) => target === connectorTarget && enabled),
|
||||
],
|
||||
[]
|
||||
);
|
||||
|
|
Loading…
Add table
Reference in a new issue