react-email-editor
react-email-editor copied to clipboard
disabling smartMergeTags
Could someone please instruct me how to disable smartMergeTags? I'm having trouble to do that since there is info about that in type defs. Unlayer documentation shows something like
unlayer.init({
features: {
smartMergeTags: false
}
});
I've been trying to do that like this:
<EmailEditor
...
options= {{
features: { smartMergeTags: false }
}}
/>
but no luck.
My setup:
"react-email-editor": "^1.6.3",
"@types/react-email-editor": "^1.5.1",
Any ideas?