0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-01-13 21:30:30 -05:00

fix(console): fix vonage connector id (#6774)

This commit is contained in:
wangsijie 2024-11-06 18:38:06 +08:00 committed by GitHub
parent 947d2e4563
commit 9f165749d3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -55,7 +55,7 @@ function CreateConnectorForm({ onClose, isOpen: isFormOpen, type }: Props) {
// Hide the entrance of adding HTTP Email connector // Hide the entrance of adding HTTP Email connector
.filter(({ id }) => id !== 'http-email') .filter(({ id }) => id !== 'http-email')
// Hide the entrance of adding Vonage SMS connector // Hide the entrance of adding Vonage SMS connector
.filter(({ id }) => id !== 'vonage') .filter(({ id }) => id !== 'vonage-sms')
); );
return allGroups return allGroups