2
0
Files
bot/packages/schemas/features/blocks/inputs/phone/constants.ts

12 lines
388 B
TypeScript
Raw Normal View History

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