I want to change the default WelcomeMessage of Twilio Flex Webchat. I´m running webchat from npm package. Below is my webchat-appConfig.js code. When I execute it, the webchat loads but the WelcomeMessage doesn´t change.
var appConfig = {
componentProps: {
MainContainer: {
height: '80%'
},
MainHeader: {
showTitle: true,
titleText: 'Alfredo Prueba',
imageUrl: '',
},
MessagingCanvas: {
PredefinedMessage: {
body: 'Funciona',
authorName: 'Alfredo',
isFromMe: false,
},
memberDisplayOptions: {
yourDefaultName: 'Tú',
yourFriendlyNameOverride: false,
}
}
},
};