Files
formbricks/apps/web/lib/events.ts
Matti Nannt 5c378bc8ce Feature/monorepo #95 (#105)
Move repository into a monorepo with turborepo and pnpm.
This is a big change in the way the code is organized, used and deployed.
2022-10-13 09:46:43 +02:00

9 lines
179 B
TypeScript

export const getEventName = (eventType: string) => {
switch (eventType) {
case "pageSubmission":
return "Page Submission";
default:
return eventType;
}
};