mirror of
https://github.com/formbricks/formbricks.git
synced 2026-05-02 19:40:35 -05:00
eee3ea5ed3
* feat: Email notifications for each submission * feat: add email notification pipeline Co-authored-by: Matthias Nannt <mail@matthiasnannt.com>
11 lines
236 B
TypeScript
11 lines
236 B
TypeScript
export const getEventName = (eventType: string) => {
|
|
switch (eventType) {
|
|
case "pageSubmission":
|
|
return "Page Submission";
|
|
case "formCompleted":
|
|
return "Form Completed";
|
|
default:
|
|
return eventType;
|
|
}
|
|
};
|