Unable to enable User Saved Blocks feature
As per the documentation in this link, providing user object in unlayer's init method should enable 'User Saved Blocks` feature.
However, when providing user's object via options props like below, it should pass the user's object to init method.
<EmailEditor
ref={editor => (this.editor = editor)}
options = {
user: { id: 13 }
}
/>
Still after adding this, I cannot see the feature enabled. On doc, it says about user having unique ID maybe it is something because of it.
options should be a object. For example:
<EmailEditor
ref={editor => (this.editor = editor)}
options = {{
user: { id: 13 }
}}
/>
I am having the same problem, did you ever find a solution?
@MobeenAshraf @adeelraza
It's been almost three years, and still, there is not a single answer from the developers!
Has anyone found a solution? Still no answer and even their own demos do not show this working despite it still being listed in their documentation.