mirror of
https://github.com/formbricks/formbricks.git
synced 2026-02-10 18:58:44 -06:00
Move repository into a monorepo with turborepo and pnpm. This is a big change in the way the code is organized, used and deployed.
9 lines
179 B
TypeScript
9 lines
179 B
TypeScript
export const getEventName = (eventType: string) => {
|
|
switch (eventType) {
|
|
case "pageSubmission":
|
|
return "Page Submission";
|
|
default:
|
|
return eventType;
|
|
}
|
|
};
|