Hello, I am using presentMessageComposer to open intercom with a pre-filled message.
I am using it like this:
static async presentMessageComposer(initialMessage?: string) {
try {
await Intercom.presentMessageComposer(initialMessage);
} catch (error) {
Logger.error(error);
}
}
Although it opens the intercom the initial message is being ignored for android and iOS.
I am on the latest version of react native intercom.
Is it a known issue?
Thank you