0
Fork 0
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:
Wang Sijie 2022-06-24 10:26:58 +08:00 committed by GitHub
parent 2c413341d1
commit ac74309414
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -37,7 +37,7 @@ const Preview = ({ signInExperience, className }: Props) => {
>(
(previous, connectorTarget) => [
...previous,
...allConnectors.filter(({ target }) => target === connectorTarget),
...allConnectors.filter(({ target, enabled }) => target === connectorTarget && enabled),
],
[]
);