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

12 lines
349 B
TypeScript

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