fix(Lemlist Node): Fix typos and incorrect action name (no-changelog) (#11406)

This commit is contained in:
Jon
2024-10-25 14:02:07 +01:00
committed by GitHub
parent 151f4dd7b8
commit 766cc92978
5 changed files with 17 additions and 17 deletions

View File

@@ -131,7 +131,7 @@ export function getEvents() {
];
return events.map((event: string) => ({
name: event === '*' ? '*' : capitalCase(event),
name: event === '*' ? '*' : capitalCase(event).replace('Linkedin', 'LinkedIn'),
value: event,
}));
}