Skip to content

Commit

Permalink
fix(console): fix vonage connector id
Browse files Browse the repository at this point in the history
  • Loading branch information
wangsijie committed Nov 6, 2024
1 parent 947d2e4 commit 3d9ae65
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ function CreateConnectorForm({ onClose, isOpen: isFormOpen, type }: Props) {
// Hide the entrance of adding HTTP Email connector
.filter(({ id }) => id !== 'http-email')
// Hide the entrance of adding Vonage SMS connector
.filter(({ id }) => id !== 'vonage')
.filter(({ id }) => id !== 'vonage-sms')
);

return allGroups
Expand Down

0 comments on commit 3d9ae65

Please sign in to comment.