chore: Update message limit to Twilio recommended 320 characters (#3333)

This commit is contained in:
wsuff 2021-11-08 01:27:00 -05:00 committed by GitHub
parent 81708f92a8
commit 26f36548c2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,7 +5,7 @@ export const isASubmittedFormMessage = (message = {}) =>
export const MESSAGE_MAX_LENGTH = {
GENERAL: 10000,
FACEBOOK: 640,
TWILIO_SMS: 160,
TWILIO_SMS: 320,
TWILIO_WHATSAPP: 1600,
TWEET: 280,
};