mirror of
https://github.com/logto-io/logto.git
synced 2025-03-10 22:22:45 -05:00
fix(console): connector name in user detials (#1147)
This commit is contained in:
parent
3ac01d72f9
commit
94084a49e7
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ const UserConnectors = ({ userId, connectors, onDelete }: Props) => {
|
|||
}
|
||||
|
||||
return Object.keys(connectors).map((key) => {
|
||||
const connector = connectorGroups.find(({ target }) => target === key);
|
||||
const connector = connectorGroups.find(({ id }) => id === key);
|
||||
|
||||
if (!connector) {
|
||||
return {
|
||||
|
|
Loading…
Add table
Reference in a new issue