8 lines
261 B
TypeScript
8 lines
261 B
TypeScript
/**
|
|
* Shared between client (form JSON) and server (Zod + honeypot check).
|
|
* CR-107 Ask an organizer.
|
|
*/
|
|
export const ORGANIZER_INQUIRY_HONEYPOT_FIELD = "company" as const;
|
|
|
|
export const ASK_ORGANIZER_INQUIRY_FORM_ID = "ask-organizer-inquiry-form" as const;
|