2
0
Files
bot/packages/schemas/features/blocks/inputs/email/constants.ts
Baptiste Arnaud 35300eaf34 ♻️ Introduce typebot v6 with events (#1013)
Closes #885
2023-11-08 15:34:16 +01:00

12 lines
362 B
TypeScript

import { defaultButtonLabel } from '../constants'
import { EmailInputBlock } from './schema'
export const defaultEmailInputOptions = {
labels: {
button: defaultButtonLabel,
placeholder: 'Type your email...',
},
retryMessageContent:
"This email doesn't seem to be valid. Can you type it again?",
} as const satisfies EmailInputBlock['options']